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
@@ -242,7 +242,7 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
242
242
| access\_analyzer\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for Access Analyzer endpoint. Only a single subnet within an AZ is supported. Ifomitted, private subnets will be used. |`list(string)`|`[]`| no |
243
243
| acm\_pca\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for ACM PCA endpoint |`bool`|`false`| no |
244
244
| acm\_pca\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for ACM PCA endpoint |`list`|`[]`| no |
245
-
| acm\_pca\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for Codebuilt endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. |`list`|`[]`| no |
245
+
| acm\_pca\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for ACM PCA endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. |`list`|`[]`| no |
246
246
| amazon\_side\_asn | The Autonomous System Number (ASN) for the Amazon side of the gateway. By default the virtual private gateway is created with the current default Amazon ASN. |`string`|`"64512"`| no |
247
247
| apigw\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for API GW endpoint |`bool`|`false`| no |
248
248
| apigw\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for API GW endpoint |`list(string)`|`[]`| no |
@@ -435,6 +435,7 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
435
435
| enable\_nat\_gateway | Should be true if you want to provision NAT Gateways for each of your private networks |`bool`|`false`| no |
436
436
| enable\_public\_redshift | Controls if redshift should have public routing table |`bool`|`false`| no |
437
437
| enable\_qldb\_session\_endpoint | Should be true if you want to provision an QLDB Session endpoint to the VPC |`bool`|`false`| no |
438
+
| enable\_rds\_endpoint | Should be true if you want to provision an RDS endpoint to the VPC |`bool`|`false`| no |
438
439
| enable\_rekognition\_endpoint | Should be true if you want to provision a Rekognition endpoint to the VPC |`bool`|`false`| no |
439
440
| enable\_s3\_endpoint | Should be true if you want to provision an S3 endpoint to the VPC |`bool`|`false`| no |
440
441
| enable\_sagemaker\_api\_endpoint | Should be true if you want to provision a SageMaker API endpoint to the VPC |`bool`|`false`| no |
@@ -536,6 +537,9 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
536
537
| qldb\_session\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for QLDB Session endpoint |`bool`|`false`| no |
537
538
| qldb\_session\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for QLDB Session endpoint |`list(string)`|`[]`| no |
538
539
| qldb\_session\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for QLDB Session endpoint. Only a single subnet within an AZ is supported. Ifomitted, private subnets will be used. |`list(string)`|`[]`| no |
540
+
| rds\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for RDS endpoint |`bool`|`false`| no |
541
+
| rds\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for RDS endpoint |`list(string)`|`[]`| no |
542
+
| rds\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for RDS endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. |`list(string)`|`[]`| no |
539
543
| redshift\_acl\_tags | Additional tags for the redshift subnets network ACL |`map(string)`|`{}`| no |
540
544
| redshift\_dedicated\_network\_acl | Whether to use dedicated network ACL (not default) and custom rules for redshift subnets |`bool`|`false`| no |
description="Should be true if you want to provision an RDS endpoint to the VPC"
1651
+
type=bool
1652
+
default=false
1653
+
}
1654
+
1655
+
variable"rds_endpoint_security_group_ids" {
1656
+
description="The ID of one or more security groups to associate with the network interface for RDS endpoint"
1657
+
type=list(string)
1658
+
default=[]
1659
+
}
1660
+
1661
+
variable"rds_endpoint_subnet_ids" {
1662
+
description="The ID of one or more subnets in which to create a network interface for RDS endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used."
1663
+
type=list(string)
1664
+
default=[]
1665
+
}
1666
+
1667
+
variable"rds_endpoint_private_dns_enabled" {
1668
+
description="Whether or not to associate a private hosted zone with the specified VPC for RDS endpoint"
1669
+
type=bool
1670
+
default=false
1671
+
}
1672
+
1649
1673
variable"acm_pca_endpoint_security_group_ids" {
1650
1674
description="The ID of one or more security groups to associate with the network interface for ACM PCA endpoint"
1651
1675
default=[]
1652
1676
}
1653
1677
1654
1678
variable"acm_pca_endpoint_subnet_ids" {
1655
-
description="The ID of one or more subnets in which to create a network interface for Codebuilt endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used."
1679
+
description="The ID of one or more subnets in which to create a network interface for ACM PCA endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used."
0 commit comments