mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-20 08:33:46 +01:00
fix: Update autoscaling group tags -> tag to support v4 of AWS provider (#1866)
This commit is contained in:
@@ -54,11 +54,7 @@ module "eks" {
|
||||
triggers = ["tag"]
|
||||
}
|
||||
|
||||
propogate_tags = [{
|
||||
key = "aws-node-termination-handler/managed"
|
||||
value = true
|
||||
propagate_at_launch = true
|
||||
}]
|
||||
tags = { "aws-node-termination-handler/managed" = "true" }
|
||||
}
|
||||
|
||||
mixed_instance = {
|
||||
@@ -82,11 +78,7 @@ module "eks" {
|
||||
]
|
||||
}
|
||||
|
||||
propogate_tags = [{
|
||||
key = "aws-node-termination-handler/managed"
|
||||
value = true
|
||||
propagate_at_launch = true
|
||||
}]
|
||||
tags = { "aws-node-termination-handler/managed" = "true" }
|
||||
}
|
||||
|
||||
spot = {
|
||||
@@ -96,12 +88,7 @@ module "eks" {
|
||||
}
|
||||
|
||||
bootstrap_extra_args = "--kubelet-extra-args '--node-labels=node.kubernetes.io/lifecycle=spot'"
|
||||
|
||||
propogate_tags = [{
|
||||
key = "aws-node-termination-handler/managed"
|
||||
value = true
|
||||
propagate_at_launch = true
|
||||
}]
|
||||
tags = { "aws-node-termination-handler/managed" = "true" }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user