microsoft / OHDSIonAzure

Automation code and documentation for deploying OHDSI CDM in Azure
35 stars 20 forks source link

User/Pass mismatch when adding a source #153

Closed tamirkamara closed 1 year ago

tamirkamara commented 1 year ago

In the bicep code, we pass 2 sets of user/pass. We should be consistent and use the right values.

      {
        name: 'CONNECTION_STRING'
        secureValue: 'jdbc:postgresql://${atlasDatabase.outputs.postgresServerFullyQualifiedDomainName}:5432/${postgresOMOPCDMDatabaseName}?user=postgres_admin&password=${postgresOMOPCDMPassword}&sslmode=require'
      }
      {
        name: 'USERNAME'
        value: atlasDatabase.outputs.postgresWebapiAdminUsername
      }
      {
        name: 'PASSWORD'
        secureValue: postgresWebapiAdminPassword
      }