Skip to content

Commit

Permalink
fix: minimum instances for normal traffic set to 3
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-calabrese committed Oct 14, 2024
1 parent 182a137 commit 1d6301d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/domains/functions/env/prod/terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cidr_subnet_services = ["10.0.139.0/26", "10.0.139.64/26"]
function_services_kind = "Linux"
function_services_sku_tier = "PremiumV3"
function_services_sku_size = "P1v3"
function_services_autoscale_minimum = 6
function_services_autoscale_minimum = 3
function_services_autoscale_maximum = 30
function_services_autoscale_default = 10

Expand Down
2 changes: 1 addition & 1 deletion src/domains/functions/function_services.tf
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ resource "azurerm_monitor_autoscale_setting" "function_services_autoscale" {

capacity {
default = var.function_services_autoscale_default
minimum = var.function_services_autoscale_minimum
minimum = 6
maximum = var.function_services_autoscale_maximum
}

Expand Down

0 comments on commit 1d6301d

Please sign in to comment.