Skip to content

Commit

Permalink
temporarily remove dns module
Browse files Browse the repository at this point in the history
  • Loading branch information
madsrodal committed Sep 12, 2024
1 parent 27dc841 commit 7b461d9
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,15 @@ module "frontend" {

// Conditionally created for imo-msw preview environment
// Can be removed or altered for other applications
module "dns" {
count = local.create_imo_msw_preview_dns
source = "./modules/dns"
dns_zone_name = local.dns_zone_name
dns_resource_group_name = "rg-dns"
frontend_container_app_environment_name = module.appenv.container_app_environment_name
frontend_resource_group_name = azurerm_resource_group.imo_app.name
frontend_container_app_name = module.frontend.container_app_name
frontend_dns_prefix = local.frontend_dns_prefix
frontend_fqdn = module.frontend.fqdn
frontend_custom_domain_verification_id = module.frontend.custom_domain_verification_id
}
# module "dns" {
# count = local.create_imo_msw_preview_dns
# source = "./modules/dns"
# dns_zone_name = local.dns_zone_name
# dns_resource_group_name = "rg-dns"
# frontend_container_app_environment_name = module.appenv.container_app_environment_name
# frontend_resource_group_name = azurerm_resource_group.imo_app.name
# frontend_container_app_name = module.frontend.container_app_name
# frontend_dns_prefix = local.frontend_dns_prefix
# frontend_fqdn = module.frontend.fqdn
# frontend_custom_domain_verification_id = module.frontend.custom_domain_verification_id
# }

0 comments on commit 7b461d9

Please sign in to comment.