1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

fix: Allow disabling instance refresh on self-managed node groups (part deux) (#3478)

This commit is contained in:
Bryant Biggs
2025-08-13 10:13:24 -05:00
committed by GitHub
parent d97712a888
commit ca8f37e8ce
6 changed files with 9 additions and 15 deletions
+3 -2
View File
@@ -710,12 +710,12 @@ variable "instance_refresh" {
checkpoint_percentages = optional(list(number))
instance_warmup = optional(number)
max_healthy_percentage = optional(number)
min_healthy_percentage = optional(number, 66)
min_healthy_percentage = optional(number)
scale_in_protected_instances = optional(string)
skip_matching = optional(bool)
standby_instances = optional(string)
}))
strategy = optional(string, "Rolling")
strategy = optional(string)
triggers = optional(list(string))
})
default = {
@@ -724,6 +724,7 @@ variable "instance_refresh" {
min_healthy_percentage = 66
}
}
nullable = false
}
variable "use_mixed_instances_policy" {