Skip to content

Commit d54bbe0

Browse files
committed
bug: updated example.tf
1 parent fc053bf commit d54bbe0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_example/public-private-subnet-endpoint/example.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module "vpc" {
1919
label_order = ["name", "environment"]
2020

2121
cidr_block = "10.0.0.0/16"
22-
# flow_logs_bucket_name = ""
22+
flow_logs_bucket_name = "vpc-flow-logs-buckets"
2323
enable_flow_log = false
2424
}
2525

@@ -43,7 +43,7 @@ module "subnets" {
4343
ipv6_cidr_block = module.vpc.ipv6_cidr_block
4444
assign_ipv6_address_on_creation = false
4545
enable_vpc_endpoint = true
46-
service_name = "com.amazonaws.${data.aws_region.current.name}.ec2"
46+
service_name = "com.amazonaws.${data.aws_region.current.name}.ec2" ## The service name can be changed according to the service.
4747
endpoint_policy = data.aws_iam_policy_document.vpc_endpoint_policy.json
4848
}
4949

0 commit comments

Comments
 (0)