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 (#3473)

This commit is contained in:
Bryant Biggs
2025-08-07 14:49:54 -05:00
committed by GitHub
parent ff1a6b73cb
commit 6a887ad386
4 changed files with 12 additions and 5 deletions
+1 -2
View File
@@ -710,7 +710,7 @@ variable "instance_refresh" {
checkpoint_percentages = optional(list(number))
instance_warmup = optional(number)
max_healthy_percentage = optional(number)
min_healthy_percentage = optional(number, 33)
min_healthy_percentage = optional(number, 66)
scale_in_protected_instances = optional(string)
skip_matching = optional(bool)
standby_instances = optional(string)
@@ -724,7 +724,6 @@ variable "instance_refresh" {
min_healthy_percentage = 66
}
}
nullable = false
}
variable "use_mixed_instances_policy" {