Skip to content

Commit 213f71b

Browse files
authored
feat: DTOSS-10566 define asp SKU per instance (#1460)
* feat: define ASP SKU per ASP instance * feat: new ASP instances and functions associations * fix: proper inc scale for nonscale and tarpit and Max Pool Size set to 100 * chore: remove old plans from the codebase * fix: move the Frontend UI to the NonScaling plan
1 parent 496100a commit 213f71b

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)