migraf/fhir-kindling

View on GitHub
benchmarks/configs/postgres/init/users.sql

Summary

Maintainability
Test Coverage
-- ##############################################################################
-- (C) Copyright IBM Corp. 2021, 2022
--
-- SPDX-License-Identifier: Apache-2.0
-- ###############################################################################

-- Create the users
CREATE USER fhirserver WITH LOGIN encrypted password 'change-password';
CREATE USER fhirbatch  WITH LOGIN encrypted password 'change-password';

GRANT CONNECT ON DATABASE fhirdb TO fhirserver;
GRANT CONNECT ON DATABASE fhirdb TO fhirbatch;