We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74890e0 commit e4d6df2Copy full SHA for e4d6df2
examples/complete/main.tf
@@ -65,6 +65,9 @@ module "tgw" {
65
destination_cidr_block = "10.10.10.10/32"
66
}
67
]
68
+ tags = {
69
+ Name = "${local.name}-vpc2"
70
+ }
71
},
72
73
main.tf
@@ -79,6 +79,7 @@ resource "aws_ec2_transit_gateway_vpc_attachment" "this" {
79
var.tags,
80
{ Name = var.name },
81
var.tgw_vpc_attachment_tags,
82
+ try(each.value.tags, {}),
83
)
84
85
0 commit comments