From e1226d6a0eb6bdd5faba3aa6deebc627d70b32b7 Mon Sep 17 00:00:00 2001 From: halprin Date: Thu, 14 Dec 2023 16:12:07 -0700 Subject: [PATCH] Change the db name --- operations/template/app.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operations/template/app.tf b/operations/template/app.tf index bf04f34c7..dc5d73da3 100644 --- a/operations/template/app.tf +++ b/operations/template/app.tf @@ -36,8 +36,8 @@ resource "azurerm_linux_web_app" "api" { KEY_VAULT_NAME = azurerm_key_vault.key_storage.name DB_URL = "cdcti-${var.environment}-database.postgres.database.azure.com" DB_PORT = "5432" - DB_NAME = "cdcti-internal-api" - DB_USER = "DOG" + DB_NAME = "postgres" + DB_USER = "cdcti-internal-api" DB_SSL = "true" }