Skip to content

Commit

Permalink
update app_settings in the middleware
Browse files Browse the repository at this point in the history
  • Loading branch information
marycrawford committed Dec 11, 2024
1 parent 6274f93 commit 0bb950f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ops/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ module "middleware_api" {
resource_group = data.azurerm_resource_group.rg.name
app_subnet_id = module.networking.middlewaresubnet_id

postgres_password = module.vault.postgres_password
postgres_user = module.database.postgres_user
postgres_db_name = module.database.postgres_db_name

app_settings = {
WEBSITES_PORT = "8081"
WEBSITES_PORT = "8081"
POSTGRES_HOST = module.database.postgres_fqdn
POSTGRES_DB = module.database.postgres_db_name
POSTGRES_USER = module.database.postgres_user
POSTGRES_PASSWORD = module.vault.postgres_password
}

lb_subnet_id = module.networking.lbsubnet_id
Expand Down

0 comments on commit 0bb950f

Please sign in to comment.