Commit 05a2282b authored by Ken Jenney's avatar Ken Jenney Committed by GitHub

chore: Updated example to enable TLS Inbound for Session Manager (#908)

parent 33b09ca3
......@@ -114,6 +114,7 @@ module "vpc_endpoints" {
service = "ssmmessages"
private_dns_enabled = true
subnet_ids = module.vpc.private_subnets
security_group_ids = [aws_security_group.vpc_tls.id]
},
lambda = {
service = "lambda"
......@@ -141,6 +142,7 @@ module "vpc_endpoints" {
service = "ec2messages"
private_dns_enabled = true
subnet_ids = module.vpc.private_subnets
security_group_ids = [aws_security_group.vpc_tls.id]
},
ecr_api = {
service = "ecr.api"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment