mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-01-17 09:07:20 +01:00
feat: Add support for Managed Node Groups (node_groups) taints (#1424)
This commit is contained in:
@@ -57,6 +57,16 @@ resource "aws_eks_node_group" "workers" {
|
||||
}
|
||||
}
|
||||
|
||||
dynamic "taint" {
|
||||
for_each = each.value["taints"]
|
||||
|
||||
content {
|
||||
key = taint.value["key"]
|
||||
value = taint.value["value"]
|
||||
effect = taint.value["effect"]
|
||||
}
|
||||
}
|
||||
|
||||
version = lookup(each.value, "version", null)
|
||||
|
||||
labels = merge(
|
||||
|
||||
Reference in New Issue
Block a user