feat: Added support for update_config in EKS managed node groups (#1560)

This commit is contained in:
marianobilli
2021-09-03 22:56:17 +02:00
committed by GitHub
parent be71ef203b
commit f23f729980
3 changed files with 14 additions and 0 deletions

View File

@@ -69,6 +69,15 @@ resource "aws_eks_node_group" "workers" {
}
}
dynamic "update_config" {
for_each = try(each.value.update_config.max_unavailable_percentage > 0, each.value.update_config.max_unavailable > 0, false) ? [true] : []
content {
max_unavailable_percentage = try(each.value.update_config.max_unavailable_percentage, null)
max_unavailable = try(each.value.update_config.max_unavailable, null)
}
}
timeouts {
create = lookup(each.value["timeouts"], "create", null)
update = lookup(each.value["timeouts"], "update", null)