Skip to content

Commit b5e7977

Browse files
Merge branch 'main' into fix/DTOSS-10107-postcode-validation-bypass
2 parents 7569e06 + 213f71b commit b5e7977

4 files changed

Lines changed: 144 additions & 50 deletions

File tree

infrastructure/tf-core/app_service_plan.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module "app-service-plan" {
3131
log_analytics_workspace_id = data.terraform_remote_state.audit.outputs.log_analytics_workspace_id[local.primary_region]
3232
monitor_diagnostic_setting_appserviceplan_metrics = local.monitor_diagnostic_setting_appserviceplan_metrics
3333
os_type = lookup(each.value, "os_type", var.app_service_plan.os_type)
34-
sku_name = lookup(each.value, "sku_name", var.app_service_plan.sku_name)
34+
sku_name = each.value.sku_name
3535
zone_balancing_enabled = lookup(each.value, "zone_balancing_enabled", var.app_service_plan.zone_balancing_enabled)
3636
vnet_integration_subnet_id = module.subnets["${module.regions_config[each.value.region].names.subnet}-apps"].id
3737
wildcard_ssl_cert_name = each.value.wildcard_ssl_cert_key

0 commit comments

Comments
 (0)