feat: Support default_tags in aws_autoscaling_group (#1973)

This commit is contained in:
Chris McNabb
2022-03-29 03:07:13 -04:00
committed by GitHub
parent 4898bf326d
commit 7a9458af52
5 changed files with 21 additions and 2 deletions

View File

@@ -1,5 +1,11 @@
provider "aws" {
region = local.region
default_tags {
tags = {
ExampleDefaultTag = "ExampleDefaultValue"
}
}
}
locals {
@@ -216,6 +222,8 @@ module "self_managed_node_group" {
module.eks.cluster_security_group_id,
]
use_default_tags = true
tags = merge(local.tags, { Separate = "self-managed-node-group" })
}