Skip to content

Commit

Permalink
Merge pull request #810 from CDCgov/change-db-username
Browse files Browse the repository at this point in the history
DB_USER needs to be dynamic based on the environment
  • Loading branch information
halprin authored Jan 26, 2024
2 parents 98fd220 + 602cf0e commit 44cf832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operations/template/app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ resource "azurerm_linux_web_app" "api" {
DB_URL = azurerm_postgresql_flexible_server.database.fqdn
DB_PORT = "5432"
DB_NAME = "postgres"
DB_USER = "cdcti-internal-api"
DB_USER = "cdcti-${var.environment}-api"
DB_SSL = "require"
}

Expand Down

0 comments on commit 44cf832

Please sign in to comment.