You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -304,6 +304,9 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
304
304
| dhcp\_options\_netbios\_node\_type | Specify netbios node\_type for DHCP options set (requires enable\_dhcp\_options set to true) |`string`|`""`| no |
305
305
| dhcp\_options\_ntp\_servers | Specify a list of NTP servers for DHCP options set (requires enable\_dhcp\_options set to true) |`list(string)`|`[]`| no |
306
306
| dhcp\_options\_tags | Additional tags for the DHCP option set (requires enable\_dhcp\_options set to true) |`map(string)`|`{}`| no |
307
+
| ec2\_autoscaling\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for EC2 AutoScaling endpoint | bool |`"false"`| no |
308
+
| ec2\_autoscaling\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for EC2 AutoScaling endpoint | list(string) |`[]`| no |
309
+
| ec2\_autoscaling\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for EC2 AutoScaling endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. | list(string) |`[]`| no |
307
310
| ec2\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for EC2 endpoint |`bool`|`false`| no |
308
311
| ec2\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for EC2 endpoint |`list(string)`|`[]`| no |
309
312
| ec2\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for EC2 endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. |`list(string)`|`[]`| no |
@@ -358,6 +361,7 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
358
361
| enable\_dns\_hostnames | Should be true to enable DNS hostnames in the VPC |`bool`|`false`| no |
359
362
| enable\_dns\_support | Should be true to enable DNS support in the VPC |`bool`|`true`| no |
360
363
| enable\_dynamodb\_endpoint | Should be true if you want to provision a DynamoDB endpoint to the VPC |`bool`|`false`| no |
364
+
| enable\_ec2\_autoscaling\_endpoint | Should be true if you want to provision an EC2AutoScaling endpoint to the VPC | bool |`"false"`| no |
361
365
| enable\_ec2\_endpoint | Should be true if you want to provision an EC2 endpoint to the VPC |`bool`|`false`| no |
362
366
| enable\_ec2messages\_endpoint | Should be true if you want to provision an EC2MESSAGES endpoint to the VPC |`bool`|`false`| no |
363
367
| enable\_ecr\_api\_endpoint | Should be true if you want to provision an ecr api endpoint to the VPC |`bool`|`false`| no |
@@ -643,6 +647,9 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
643
647
| vpc\_endpoint\_ec2\_dns\_entry | The DNS entries for the VPC Endpoint for EC2. |
644
648
| vpc\_endpoint\_ec2\_id | The ID of VPC endpoint for EC2 |
645
649
| vpc\_endpoint\_ec2\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for EC2 |
650
+
| vpc\_endpoint\_ec2\_autoscaling\_dns\_entry | The DNS entries for the VPC Endpoint for EC2 AutoScaling. |
651
+
| vpc\_endpoint\_ec2\_autoscaling\_id | The ID of VPC endpoint for EC2 AutoScaling |
652
+
| vpc\_endpoint\_ec2\_autoscaling\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for EC2 AutoScaling |
646
653
| vpc\_endpoint\_ec2messages\_dns\_entry | The DNS entries for the VPC Endpoint for EC2MESSAGES. |
647
654
| vpc\_endpoint\_ec2messages\_id | The ID of VPC endpoint for EC2MESSAGES |
648
655
| vpc\_endpoint\_ec2messages\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for EC2MESSAGES |
description="Whether or not to associate a private hosted zone with the specified VPC for EC2 Autoscaling endpoint"
597
+
type=bool
598
+
default=false
599
+
}
600
+
601
+
variable"ec2_autoscaling_endpoint_subnet_ids" {
602
+
description="The ID of one or more subnets in which to create a network interface for EC2 Autoscaling endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used."
603
+
type=list(string)
604
+
default=[]
605
+
}
606
+
582
607
variable"enable_ecr_api_endpoint" {
583
608
description="Should be true if you want to provision an ecr api endpoint to the VPC"
0 commit comments