File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ These types of resources are supported:
1313* [ Internet Gateway] ( https://www.terraform.io/docs/providers/aws/r/internet_gateway.html )
1414* [ NAT Gateway] ( https://www.terraform.io/docs/providers/aws/r/nat_gateway.html )
1515* [ VPN Gateway] ( https://www.terraform.io/docs/providers/aws/r/vpn_gateway.html )
16- * [ VPC Endpoint] ( https://www.terraform.io/docs/providers/aws/r/vpc_endpoint.html ) (Gateway: S3, DynamoDB; Interface: EC2, SSM)
16+ * [ VPC Endpoint] ( https://www.terraform.io/docs/providers/aws/r/vpc_endpoint.html ) :
17+ * Gateway: S3, DynamoDB
18+ * Interface: EC2, SSM, EC2 Messages, SSM Messages
1719* [ RDS DB Subnet Group] ( https://www.terraform.io/docs/providers/aws/r/db_subnet_group.html )
1820* [ ElastiCache Subnet Group] ( https://www.terraform.io/docs/providers/aws/r/elasticache_subnet_group.html )
1921* [ Redshift Subnet Group] ( https://www.terraform.io/docs/providers/aws/r/redshift_subnet_group.html )
Original file line number Diff line number Diff line change @@ -45,22 +45,23 @@ module "vpc" {
4545 # VPC endpoint for SSM
4646 enable_ssm_endpoint = true
4747 ssm_endpoint_private_dns_enabled = true
48- ssm_endpoint_security_group_ids = [" ${ data . aws_security_group . default . id } " ]
49-
50- // ssm_endpoint_subnet_ids = ["..."]
48+ ssm_endpoint_security_group_ids = [" ${ data . aws_security_group . default . id } " ] # ssm_endpoint_subnet_ids = ["..."]
5149
5250 # VPC endpoint for SSMMESSAGES
5351 enable_ssmmessages_endpoint = true
5452 ssmmessages_endpoint_private_dns_enabled = true
5553 ssmmessages_endpoint_security_group_ids = [" ${ data . aws_security_group . default . id } " ]
54+
5655 # VPC Endpoint for EC2
5756 enable_ec2_endpoint = true
5857 ec2_endpoint_private_dns_enabled = true
5958 ec2_endpoint_security_group_ids = [" ${ data . aws_security_group . default . id } " ]
59+
6060 # VPC Endpoint for EC2MESSAGES
6161 enable_ec2messages_endpoint = true
6262 ec2messages_endpoint_private_dns_enabled = true
6363 ec2messages_endpoint_security_group_ids = [" ${ data . aws_security_group . default . id } " ]
64+
6465 tags = {
6566 Owner = " user"
6667 Environment = " staging"
You can’t perform that action at this time.
0 commit comments