Skip to content

Commit

Permalink
DB_USER needs to be dynamic based on the environment
Browse files Browse the repository at this point in the history
  • Loading branch information
halprin committed Jan 26, 2024
1 parent 98fd220 commit 602cf0e
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 602cf0e

Please sign in to comment.