Skip to content

Commit 05a2282

Browse files
authored
chore: Updated example to enable TLS Inbound for Session Manager (#908)
1 parent 33b09ca commit 05a2282

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

examples/complete-vpc/main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,7 @@ module "vpc_endpoints" {
114114
service = "ssmmessages"
115115
private_dns_enabled = true
116116
subnet_ids = module.vpc.private_subnets
117+
security_group_ids = [aws_security_group.vpc_tls.id]
117118
},
118119
lambda = {
119120
service = "lambda"
@@ -141,6 +142,7 @@ module "vpc_endpoints" {
141142
service = "ec2messages"
142143
private_dns_enabled = true
143144
subnet_ids = module.vpc.private_subnets
145+
security_group_ids = [aws_security_group.vpc_tls.id]
144146
},
145147
ecr_api = {
146148
service = "ecr.api"

0 commit comments

Comments
 (0)