Skip to content

Commit

Permalink
Make autoscaling resource limits optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ps-occrp authored Mar 4, 2025
1 parent aadc860 commit d5c78a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/beta-private-cluster-update-variant/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,10 @@ variable "cluster_autoscaling" {
type = object({
enabled = bool
autoscaling_profile = string
min_cpu_cores = number
max_cpu_cores = number
min_memory_gb = number
max_memory_gb = number
min_cpu_cores = optional(number)
max_cpu_cores = optional(number)
min_memory_gb = optional(number)
max_memory_gb = optional(number)
gpu_resources = list(object({ resource_type = string, minimum = number, maximum = number }))
auto_repair = bool
auto_upgrade = bool
Expand Down

0 comments on commit d5c78a7

Please sign in to comment.