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 9ffd9c6 commit f266aceCopy full SHA for f266ace
modules/vpc-endpoints/main.tf
@@ -44,7 +44,11 @@ resource "aws_vpc_endpoint" "this" {
44
}
45
46
47
- tags = merge(var.tags, try(each.value.tags, {}))
+ tags = merge(
48
+ var.tags,
49
+ { "Name" = "${each.key}-vpc-endpoint" },
50
+ try(each.value.tags, {}),
51
+ )
52
53
timeouts {
54
create = try(var.timeouts.create, "10m")
0 commit comments