Skip to content

Commit

Permalink
migrate ilmo to new db
Browse files Browse the repository at this point in the history
  • Loading branch information
kahlstrm committed Nov 7, 2023
1 parent 12ff9d4 commit 8435b56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ module "ilmo" {
resource_group_name = module.common.resource_group_name
resource_group_location = local.resource_group_location
postgres_server_name = module.common.postgres_server_name
postgres_server_fqdn = module.common.postgres_server_fqdn
postgres_server_fqdn = module.common.postgres_server_new_fqdn
postgres_server_host = module.common.postgres_server_name
postgres_admin_password = module.common.postgres_admin_password
postgres_server_new_id = module.common.postgres_server_new_id
Expand Down
2 changes: 1 addition & 1 deletion modules/ilmo/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ resource "azurerm_linux_web_app" "ilmo_backend" {
DB_HOST = var.postgres_server_fqdn
DB_SSL = true
DB_DATABASE = local.db_name
DB_USER = "tietokilta@${var.postgres_server_host}"
DB_USER = "tietokilta"
DB_PASSWORD = var.postgres_admin_password

ADMIN_REGISTRATION_ALLOWED = false
Expand Down

0 comments on commit 8435b56

Please sign in to comment.