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
@@ -350,6 +350,9 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
350
350
| dhcp\_options\_netbios\_node\_type | Specify netbios node\_type for DHCP options set (requires enable\_dhcp\_options set to true) |`string`|`""`| no |
351
351
| dhcp\_options\_ntp\_servers | Specify a list of NTP servers for DHCP options set (requires enable\_dhcp\_options set to true) |`list(string)`|`[]`| no |
352
352
| dhcp\_options\_tags | Additional tags for the DHCP option set (requires enable\_dhcp\_options set to true) |`map(string)`|`{}`| no |
353
+
| dms\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for DMS endpoint |`bool`|`false`| no |
354
+
| dms\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for DMS endpoint |`list(string)`|`[]`| no |
355
+
| dms\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for DMS endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. |`list(string)`|`[]`| no |
353
356
| ebs\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for EBS endpoint |`bool`|`false`| no |
354
357
| ebs\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for EBS endpoint |`list(string)`|`[]`| no |
355
358
| ebs\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for EBS endpoint. Only a single subnet within an AZ is supported. Ifomitted, private subnets will be used. |`list(string)`|`[]`| no |
@@ -428,6 +431,7 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
428
431
| enable\_config\_endpoint | Should be true if you want to provision an config endpoint to the VPC |`bool`|`false`| no |
429
432
| enable\_datasync\_endpoint | Should be true if you want to provision an Data Sync endpoint to the VPC |`bool`|`false`| no |
430
433
| enable\_dhcp\_options | Should be true if you want to specify a DHCP options set with a custom domain name, DNS servers, NTP servers, netbios servers, and/or netbios server type |`bool`|`false`| no |
434
+
| enable\_dms\_endpoint | Should be true if you want to provision a DMS endpoint to the VPC |`bool`|`false`| no |
431
435
| enable\_dns\_hostnames | Should be true to enable DNS hostnames in the VPC |`bool`|`false`| no |
432
436
| enable\_dns\_support | Should be true to enable DNS support in the VPC |`bool`|`true`| no |
433
437
| enable\_dynamodb\_endpoint | Should be true if you want to provision a DynamoDB endpoint to the VPC |`bool`|`false`| no |
@@ -799,6 +803,9 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
799
803
| vpc\_endpoint\_datasync\_dns\_entry | The DNS entries for the VPC Endpoint for DataSync. |
800
804
| vpc\_endpoint\_datasync\_id | The ID of VPC endpoint for DataSync |
801
805
| vpc\_endpoint\_datasync\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for DataSync. |
806
+
| vpc\_endpoint\_dms\_dns\_entry | The DNS entries for the VPC Endpoint for DMS. |
807
+
| vpc\_endpoint\_dms\_id | The ID of VPC endpoint for DMS |
808
+
| vpc\_endpoint\_dms\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for DMS. |
802
809
| vpc\_endpoint\_dynamodb\_id | The ID of VPC endpoint for DynamoDB |
803
810
| vpc\_endpoint\_dynamodb\_pl\_id | The prefix list for the DynamoDB VPC endpoint. |
804
811
| vpc\_endpoint\_ebs\_dns\_entry | The DNS entries for the VPC Endpoint for EBS. |
description="Should be true if you want to provision a DMS endpoint to the VPC"
1888
+
type=bool
1889
+
default=false
1890
+
}
1891
+
1892
+
variable"dms_endpoint_security_group_ids" {
1893
+
description="The ID of one or more security groups to associate with the network interface for DMS endpoint"
1894
+
type=list(string)
1895
+
default=[]
1896
+
}
1897
+
1898
+
variable"dms_endpoint_subnet_ids" {
1899
+
description="The ID of one or more subnets in which to create a network interface for DMS endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used."
1900
+
type=list(string)
1901
+
default=[]
1902
+
}
1903
+
1904
+
variable"dms_endpoint_private_dns_enabled" {
1905
+
description="Whether or not to associate a private hosted zone with the specified VPC for DMS endpoint"
1906
+
type=bool
1907
+
default=false
1908
+
}
1909
+
1886
1910
variable"map_public_ip_on_launch" {
1887
1911
description="Should be false if you do not want to auto-assign public IP on launch"
0 commit comments