diff --git a/cloud/azure/modules/app/locals.tf b/cloud/azure/modules/app/locals.tf index c02ab66f..30abcd05 100644 --- a/cloud/azure/modules/app/locals.tf +++ b/cloud/azure/modules/app/locals.tf @@ -21,7 +21,6 @@ locals { DB_USERNAME = "${azurerm_postgresql_flexible_server.civiform.administrator_login}@${azurerm_postgresql_flexible_server.civiform.name}" DB_PASSWORD = data.azurerm_key_vault_secret.postgres_password.value - #DB_JDBC_STRING = "jdbc:postgresql://${azurerm_postgresql_flexible_server.civiform.name}.postgres.database.azure.com:5432/postgres?user=${azurerm_postgresql_flexible_server.civiform.administrator_login}&password=${azurerm_postgresql_flexible_server.civiform.administrator_password}&sslmode=require" DB_JDBC_STRING = "jdbc:postgresql://${local.postgres_private_link}:5432/postgres?user=psqladmin&password=${azurerm_postgresql_flexible_server.civiform.administrator_password}&sslmode=require" STORAGE_SERVICE_NAME = "azure-blob"