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
Git-Codecommit, Transfer Server, Kinesis Streams, Kinesis Firehose, SageMaker(Notebook, Runtime, API),
26
26
CloudFormation, CodePipeline, Storage Gateway, AppMesh, Transfer, Service Catalog, AppStream,
@@ -397,6 +397,7 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
397
397
| enable\_sagemaker\_runtime\_endpoint | Should be true if you want to provision a SageMaker Runtime endpoint to the VPC |`bool`|`false`| no |
398
398
| enable\_secretsmanager\_endpoint | Should be true if you want to provision an Secrets Manager endpoint to the VPC |`bool`|`false`| no |
399
399
| enable\_servicecatalog\_endpoint | Should be true if you want to provision a Service Catalog endpoint to the VPC |`bool`|`false`| no |
400
+
| enable\_ses\_endpoint | Should be true if you want to provision an SES endpoint to the VPC |`bool`|`false`| no |
400
401
| enable\_sns\_endpoint | Should be true if you want to provision a SNS endpoint to the VPC |`bool`|`false`| no |
401
402
| enable\_sqs\_endpoint | Should be true if you want to provision an SQS endpoint to the VPC |`bool`|`false`| no |
402
403
| enable\_ssm\_endpoint | Should be true if you want to provision an SSM endpoint to the VPC |`bool`|`false`| no |
@@ -513,6 +514,9 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
513
514
| servicecatalog\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for Service Catalog endpoint |`bool`|`false`| no |
514
515
| servicecatalog\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for Service Catalog endpoint |`list(string)`|`[]`| no |
515
516
| servicecatalog\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for Service Catalog endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. |`list(string)`|`[]`| no |
517
+
| ses\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for SES endpoint |`bool`|`false`| no |
518
+
| ses\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for SES endpoint |`list(string)`|`[]`| no |
519
+
| ses\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for SES endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. |`list(string)`|`[]`| no |
516
520
| single\_nat\_gateway | Should be true if you want to provision a single shared NAT Gateway across all of your private networks |`bool`|`false`| no |
517
521
| sns\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for SNS endpoint |`bool`|`false`| no |
518
522
| sns\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for SNS endpoint |`list(string)`|`[]`| no |
@@ -736,6 +740,9 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
736
740
| vpc\_endpoint\_servicecatalog\_dns\_entry | The DNS entries for the VPC Endpoint for Service Catalog. |
737
741
| vpc\_endpoint\_servicecatalog\_id | The ID of VPC endpoint for Service Catalog |
738
742
| vpc\_endpoint\_servicecatalog\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for Service Catalog. |
743
+
| vpc\_endpoint\_ses\_dns\_entry | The DNS entries for the VPC Endpoint for SES. |
744
+
| vpc\_endpoint\_ses\_id | The ID of VPC endpoint for SES |
745
+
| vpc\_endpoint\_ses\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for SES. |
739
746
| vpc\_endpoint\_sns\_dns\_entry | The DNS entries for the VPC Endpoint for SNS. |
740
747
| vpc\_endpoint\_sns\_id | The ID of VPC endpoint for SNS |
741
748
| vpc\_endpoint\_sns\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for SNS. |
description="Should be true if you want to provision an SES endpoint to the VPC"
1328
+
type=bool
1329
+
default=false
1330
+
}
1331
+
1332
+
variable"ses_endpoint_security_group_ids" {
1333
+
description="The ID of one or more security groups to associate with the network interface for SES endpoint"
1334
+
type=list(string)
1335
+
default=[]
1336
+
}
1337
+
1338
+
variable"ses_endpoint_subnet_ids" {
1339
+
description="The ID of one or more subnets in which to create a network interface for SES endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used."
1340
+
type=list(string)
1341
+
default=[]
1342
+
}
1343
+
1344
+
variable"ses_endpoint_private_dns_enabled" {
1345
+
description="Whether or not to associate a private hosted zone with the specified VPC for SES endpoint"
1346
+
type=bool
1347
+
default=false
1348
+
}
1349
+
1326
1350
1327
1351
variable"map_public_ip_on_launch" {
1328
1352
description="Should be false if you do not want to auto-assign public IP on launch"
0 commit comments