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 cf5962c commit d103d4eCopy full SHA for d103d4e
modules/comet_vpc/main.tf
@@ -46,5 +46,8 @@ resource "aws_vpc_endpoint" "s3" {
46
service_name = "com.amazonaws.${var.region}.s3"
47
vpc_endpoint_type = "Gateway"
48
route_table_ids = concat(module.vpc.private_route_table_ids, module.vpc.public_route_table_ids)
49
- tags = local.tags
+ tags = merge(
50
+ local.tags,
51
+ { Name = "${local.resource_name}-s3-endpoint" }
52
+ )
53
}
0 commit comments