Skip to content

Commit

Permalink
fix: capacity
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-calabrese committed Oct 14, 2024
1 parent 86d1eff commit 182a137
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/domains/functions/function_services.tf
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,9 @@ resource "azurerm_monitor_autoscale_setting" "function_services_autoscale" {
name = "wallet_gate0"

capacity {
minimum = 8
maximum = 30
default = 10
default = var.function_services_autoscale_default
minimum = var.function_services_autoscale_minimum
maximum = var.function_services_autoscale_maximum
}

fixed_date {
Expand Down

0 comments on commit 182a137

Please sign in to comment.