mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-22 17:39:05 +01:00
feat: Support default_tags in aws_autoscaling_group (#1973)
This commit is contained in:
@@ -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" })
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user