feat: Allow override of timeouts in node_groups (#1552)

This commit is contained in:
Robert Kozak
2021-09-03 08:07:59 -07:00
committed by GitHub
parent c2490c5148
commit b7413b3e37
8 changed files with 25 additions and 1 deletions

View File

@@ -69,6 +69,12 @@ resource "aws_eks_node_group" "workers" {
}
}
timeouts {
create = lookup(each.value["timeouts"], "create", null)
update = lookup(each.value["timeouts"], "update", null)
delete = lookup(each.value["timeouts"], "delete", null)
}
version = lookup(each.value, "version", null)
labels = merge(