mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-21 17:09:04 +01:00
feat: Tags passed into worker_groups_launch_template extend var.tags for the volumes (#1397)
This commit is contained in:
@@ -547,6 +547,11 @@ resource "aws_launch_template" "workers_launch_template" {
|
||||
)}-eks_asg"
|
||||
},
|
||||
var.tags,
|
||||
{
|
||||
for tag in lookup(var.worker_groups_launch_template[count.index], "tags", local.workers_group_defaults["tags"]) :
|
||||
tag["key"] => tag["value"]
|
||||
if tag["key"] != "Name" && tag["propagate_at_launch"]
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user