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
@@ -465,6 +465,7 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
465
465
| enable\_states\_endpoint | Should be true if you want to provision a Step Function endpoint to the VPC |`bool`|`false`| no |
466
466
| enable\_storagegateway\_endpoint | Should be true if you want to provision a Storage Gateway endpoint to the VPC |`bool`|`false`| no |
467
467
| enable\_sts\_endpoint | Should be true if you want to provision a STS endpoint to the VPC |`bool`|`false`| no |
468
+
| enable\_textract\_endpoint | Should be true if you want to provision a Textract endpoint to the VPC |`bool`|`false`| no |
468
469
| enable\_transfer\_endpoint | Should be true if you want to provision a Transfer endpoint to the VPC |`bool`|`false`| no |
469
470
| enable\_transferserver\_endpoint | Should be true if you want to provision a Transfer Server endpoint to the VPC |`bool`|`false`| no |
470
471
| enable\_vpn\_gateway | Should be true if you want to create a new VPN Gateway resource and attach it to the VPC |`bool`|`false`| no |
@@ -614,9 +615,12 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
614
615
| sts\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for STS endpoint |`list(string)`|`[]`| no |
615
616
| sts\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for STS endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. |`list(string)`|`[]`| no |
616
617
| tags | A map of tags to add to all resources |`map(string)`|`{}`| no |
618
+
| textract\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for Textract |`bool`|`false`| no |
619
+
| textract\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for Textract endpoint |`list(string)`|`[]`| no |
620
+
| textract\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for Textract endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. |`list(string)`|`[]`| no |
617
621
| transfer\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for Transfer endpoint |`bool`|`false`| no |
618
622
| transfer\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for Transfer endpoint |`list(string)`|`[]`| no |
619
-
| transfer\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for Transfer endpoint. Only a single subnet within an AZ is supported. Ifomitted, private subnets will be used. |`list(string)`|`[]`| no |
623
+
| transfer\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for Transfer endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. |`list(string)`|`[]`| no |
620
624
| transferserver\_endpoint\_private\_dns\_enabled | Whether or not to associate a private hosted zone with the specified VPC for Transfer Server endpoint |`bool`|`false`| no |
621
625
| transferserver\_endpoint\_security\_group\_ids | The ID of one or more security groups to associate with the network interface for Transfer Server endpoint |`list(string)`|`[]`| no |
622
626
| transferserver\_endpoint\_subnet\_ids | The ID of one or more subnets in which to create a network interface for Transfer Server endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used. |`list(string)`|`[]`| no |
@@ -890,6 +894,9 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
890
894
| vpc\_endpoint\_sts\_dns\_entry | The DNS entries for the VPC Endpoint for STS. |
891
895
| vpc\_endpoint\_sts\_id | The ID of VPC endpoint for STS |
892
896
| vpc\_endpoint\_sts\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for STS. |
897
+
| vpc\_endpoint\_textract\_dns\_entry | The DNS entries for the VPC Endpoint for textract. |
898
+
| vpc\_endpoint\_textract\_id | The ID of VPC endpoint for textract. |
899
+
| vpc\_endpoint\_textract\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for textract. |
893
900
| vpc\_endpoint\_transfer\_dns\_entry | The DNS entries for the VPC Endpoint for Transfer. |
894
901
| vpc\_endpoint\_transfer\_id | The ID of VPC endpoint for Transfer |
895
902
| vpc\_endpoint\_transfer\_network\_interface\_ids | One or more network interfaces for the VPC Endpoint for Transfer. |
description="Should be true if you want to provision an Textract endpoint to the VPC"
543
+
type=bool
544
+
default=false
545
+
}
546
+
547
+
variable"textract_endpoint_security_group_ids" {
548
+
description="The ID of one or more security groups to associate with the network interface for Textract endpoint"
549
+
type=list(string)
550
+
default=[]
551
+
}
552
+
553
+
variable"textract_endpoint_subnet_ids" {
554
+
description="The ID of one or more subnets in which to create a network interface for Textract endpoint. Only a single subnet within an AZ is supported. If omitted, private subnets will be used."
555
+
type=list(string)
556
+
default=[]
557
+
}
558
+
559
+
variable"textract_endpoint_private_dns_enabled" {
560
+
description="Whether or not to associate a private hosted zone with the specified VPC for Textract endpoint"
561
+
type=bool
562
+
default=false
563
+
}
564
+
541
565
variable"enable_transferserver_endpoint" {
542
566
description="Should be true if you want to provision a Transfer Server endpoint to the VPC"
0 commit comments