Skip to content

Commit

Permalink
fix: default values
Browse files Browse the repository at this point in the history
  • Loading branch information
avx-rodmans committed Dec 8, 2023
1 parent bbea9f2 commit c9a6461
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,10 @@ variable "default_runner_config" {
scale_target_min_capacity = optional(number)
scale_target_max_capacity = optional(number)
min_cpu_period = optional(number)
max_cpu_period = optional(number)
max_cpu_threshold = optional(number)
min_cpu_threshold = optional(number)
max_cpu_evaluation_period = optional(number)
})
default = {
org = ""
Expand All @@ -57,8 +59,11 @@ variable "default_runner_config" {
scale_target_min_capacity = 1
scale_target_max_capacity = 10
min_cpu_period = 10
max_cpu_period = 120
max_cpu_threshold = 80
min_cpu_threshold = 10
max_cpu_evaluation_period = 3
min_cpu_evaluation_period = 3
}
}

Expand Down

0 comments on commit c9a6461

Please sign in to comment.