From 7b613847956350c3aa5aaad49704313aae0afcf9 Mon Sep 17 00:00:00 2001 From: Jeff Crichlake Date: Thu, 14 Dec 2023 11:06:47 -0500 Subject: [PATCH] Updating db name for app --- operations/template/app.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/operations/template/app.tf b/operations/template/app.tf index 327e7515b..9140a409f 100644 --- a/operations/template/app.tf +++ b/operations/template/app.tf @@ -36,7 +36,7 @@ resource "azurerm_linux_web_app" "api" { KEY_VAULT_NAME = azurerm_key_vault.key_storage.name DB_URL = "jdbc:postgresql://cdcti-${var.environment}-database.postgres.database.azure.com" DB_PORT = "5432" - DB_NAME = "intermediary" + DB_NAME = "postgres" DB_USER = azurerm_postgresql_flexible_server.database.administrator_login DB_PASS = azurerm_postgresql_flexible_server.database.administrator_password DB_SSL = "true"