feat: Tags passed into worker groups override tags from var.tags for Autoscaling Groups (#1092)

NOTES: Tags that are passed into `var.worker_groups_launch_template` or `var.worker_groups` now override tags passed in via `var.tags` for Autoscaling Groups only. This allow ASG Tags to be overwritten, so that `propagate_at_launch` can be tweaked for a particular key.
This commit is contained in:
huddy
2020-11-07 21:20:22 +00:00
committed by GitHub
parent 3cb8fa3d87
commit bba7c151c8
5 changed files with 20 additions and 13 deletions

View File

@@ -85,7 +85,7 @@ variable "subnets" {
}
variable "tags" {
description = "A map of tags to add to all resources."
description = "A map of tags to add to all resources. Tags added to launch coniguration or templates override these values for ASG Tags only."
type = map(string)
default = {}
}