@@ -181,6 +181,54 @@ Sometimes it is handy to have public access to Redshift clusters (for example if
...
@@ -181,6 +181,54 @@ Sometimes it is handy to have public access to Redshift clusters (for example if
It is possible to integrate this VPC module with [terraform-aws-transit-gateway module](https://github.com/terraform-aws-modules/terraform-aws-transit-gateway) which handles the creation of TGW resources and VPC attachments. See [complete example there](https://github.com/terraform-aws-modules/terraform-aws-transit-gateway/tree/master/examples/complete).
It is possible to integrate this VPC module with [terraform-aws-transit-gateway module](https://github.com/terraform-aws-modules/terraform-aws-transit-gateway) which handles the creation of TGW resources and VPC attachments. See [complete example there](https://github.com/terraform-aws-modules/terraform-aws-transit-gateway/tree/master/examples/complete).
## VPC CIDR from AWS IP Address Manager (IPAM)
It is possible to have your VPC CIDR assigned from an [AWS IPAM Pool](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/vpc_ipam_pool). However, In order to build subnets within this module Terraform must know subnet CIDRs to properly plan the amount of resources to build. Since CIDR is derived by IPAM by calling CreateVpc this is not possible within a module unless cidr is known ahead of time. You can get around this by "previewing" the CIDR and then using that as the subnet values.
_Note: Due to race conditions with `terraform plan`, it is not possible to use `ipv4_netmask_length` or a pools `allocation_default_netmask_length` within this module. You must explicitly set the CIDRs for a pool to use._
```hcl
# Find the pool RAM shared to your account
# Info on RAM sharing pools: https://docs.aws.amazon.com/vpc/latest/ipam/share-pool-ipam.html
data "aws_vpc_ipam_pool" "ipv4_example" {
filter {
name = "description"
values = ["*mypool*"]
}
filter {
name = "address-family"
values = ["ipv4"]
}
}
# Preview next CIDR from pool
data "aws_vpc_ipam_preview_next_cidr" "previewed_cidr" {
| <a name="input_amazon_side_asn"></a> [amazon\_side\_asn](#input\_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 |
| <a name="input_amazon_side_asn"></a> [amazon\_side\_asn](#input\_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 |
| <a name="input_assign_ipv6_address_on_creation"></a> [assign\_ipv6\_address\_on\_creation](#input\_assign\_ipv6\_address\_on\_creation) | Assign IPv6 address on subnet, must be disabled to change IPv6 CIDRs. This is the IPv6 equivalent of map\_public\_ip\_on\_launch | `bool` | `false` | no |
| <a name="input_assign_ipv6_address_on_creation"></a> [assign\_ipv6\_address\_on\_creation](#input\_assign\_ipv6\_address\_on\_creation) | Assign IPv6 address on subnet, must be disabled to change IPv6 CIDRs. This is the IPv6 equivalent of map\_public\_ip\_on\_launch | `bool` | `false` | no |
| <a name="input_azs"></a> [azs](#input\_azs) | A list of availability zones names or ids in the region | `list(string)` | `[]` | no |
| <a name="input_azs"></a> [azs](#input\_azs) | A list of availability zones names or ids in the region | `list(string)` | `[]` | no |
| <aname="input_cidr"></a>[cidr](#input\_cidr) | The CIDR block for the VPC. Default value is a valid CIDR, but not acceptable by AWS and should be overridden | `string` | `"0.0.0.0/0"` | no |
| <a name="input_cidr"></a> [cidr](#input\_cidr) | (Optional) The IPv4 CIDR block for the VPC. | `string` | `"0.0.0.0/0"` | no |
| <a name="input_create_database_internet_gateway_route"></a> [create\_database\_internet\_gateway\_route](#input\_create\_database\_internet\_gateway\_route) | Controls if an internet gateway route for public database access should be created | `bool` | `false` | no |
| <a name="input_create_database_internet_gateway_route"></a> [create\_database\_internet\_gateway\_route](#input\_create\_database\_internet\_gateway\_route) | Controls if an internet gateway route for public database access should be created | `bool` | `false` | no |
| <a name="input_create_database_nat_gateway_route"></a> [create\_database\_nat\_gateway\_route](#input\_create\_database\_nat\_gateway\_route) | Controls if a nat gateway route should be created to give internet access to the database subnets | `bool` | `false` | no |
| <a name="input_create_database_nat_gateway_route"></a> [create\_database\_nat\_gateway\_route](#input\_create\_database\_nat\_gateway\_route) | Controls if a nat gateway route should be created to give internet access to the database subnets | `bool` | `false` | no |
| <a name="input_create_database_subnet_group"></a> [create\_database\_subnet\_group](#input\_create\_database\_subnet\_group) | Controls if database subnet group should be created (n.b. database\_subnets must also be set) | `bool` | `true` | no |
| <a name="input_create_database_subnet_group"></a> [create\_database\_subnet\_group](#input\_create\_database\_subnet\_group) | Controls if database subnet group should be created (n.b. database\_subnets must also be set) | `bool` | `true` | no |
...
@@ -405,6 +454,7 @@ No modules.
...
@@ -405,6 +454,7 @@ No modules.
| <a name="input_intra_subnet_suffix"></a> [intra\_subnet\_suffix](#input\_intra\_subnet\_suffix) | Suffix to append to intra subnets name | `string` | `"intra"` | no |
| <a name="input_intra_subnet_suffix"></a> [intra\_subnet\_suffix](#input\_intra\_subnet\_suffix) | Suffix to append to intra subnets name | `string` | `"intra"` | no |
| <a name="input_intra_subnet_tags"></a> [intra\_subnet\_tags](#input\_intra\_subnet\_tags) | Additional tags for the intra subnets | `map(string)` | `{}` | no |
| <a name="input_intra_subnet_tags"></a> [intra\_subnet\_tags](#input\_intra\_subnet\_tags) | Additional tags for the intra subnets | `map(string)` | `{}` | no |
| <a name="input_intra_subnets"></a> [intra\_subnets](#input\_intra\_subnets) | A list of intra subnets | `list(string)` | `[]` | no |
| <a name="input_intra_subnets"></a> [intra\_subnets](#input\_intra\_subnets) | A list of intra subnets | `list(string)` | `[]` | no |
| <a name="input_ipv4_ipam_pool_id"></a> [ipv4\_ipam\_pool\_id](#input\_ipv4\_ipam\_pool\_id) | (Optional) The ID of an IPv4 IPAM pool you want to use for allocating this VPC's CIDR. | `string` | `null` | no |
| <a name="input_manage_default_network_acl"></a> [manage\_default\_network\_acl](#input\_manage\_default\_network\_acl) | Should be true to adopt and manage Default Network ACL | `bool` | `false` | no |
| <a name="input_manage_default_network_acl"></a> [manage\_default\_network\_acl](#input\_manage\_default\_network\_acl) | Should be true to adopt and manage Default Network ACL | `bool` | `false` | no |
| <a name="input_manage_default_route_table"></a> [manage\_default\_route\_table](#input\_manage\_default\_route\_table) | Should be true to manage default route table | `bool` | `false` | no |
| <a name="input_manage_default_route_table"></a> [manage\_default\_route\_table](#input\_manage\_default\_route\_table) | Should be true to manage default route table | `bool` | `false` | no |
| <a name="input_manage_default_security_group"></a> [manage\_default\_security\_group](#input\_manage\_default\_security\_group) | Should be true to adopt and manage default security group | `bool` | `false` | no |
| <a name="input_manage_default_security_group"></a> [manage\_default\_security\_group](#input\_manage\_default\_security\_group) | Should be true to adopt and manage default security group | `bool` | `false` | no |
...
@@ -560,7 +610,7 @@ No modules.
...
@@ -560,7 +610,7 @@ No modules.
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshidt route table association |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshidt route table association |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
Configuration in this directory creates set of VPC resources using the CIDR provided by an IPAM pool.
Note: Due to the nature of vending CIDR blocks from an IPAM pool, the IPAM pool must exist prior to creating a VPC using one of the CIDRs from the pool.
## Usage
To run this example you need to execute:
```bash
$ terraform init
$ terraform plan
$ terraform apply -target=aws_vpc_ipam_preview_next_cidr.this # CIDR pool must exist before assigning CIDR from pool
$ terraform apply
```
To destroy this example you can execute:
```bash
$ terraform destroy -target=module.vpc # destroy VPC that uses the IPAM pool CIDR first
$ terraform destroy
```
Note that this example may create resources which can cost money (AWS Elastic IP, for example). Run `terraform destroy` when you don't need these resources.
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
| <aname="output_cgw_arns"></a>[cgw\_arns](#output\_cgw\_arns) | List of ARNs of Customer Gateway |
| <aname="output_cgw_ids"></a>[cgw\_ids](#output\_cgw\_ids) | List of IDs of Customer Gateway |
| <aname="output_database_internet_gateway_route_id"></a>[database\_internet\_gateway\_route\_id](#output\_database\_internet\_gateway\_route\_id) | ID of the database internet gateway route |
| <aname="output_database_ipv6_egress_route_id"></a>[database\_ipv6\_egress\_route\_id](#output\_database\_ipv6\_egress\_route\_id) | ID of the database IPv6 egress route |
| <aname="output_database_nat_gateway_route_ids"></a>[database\_nat\_gateway\_route\_ids](#output\_database\_nat\_gateway\_route\_ids) | List of IDs of the database nat gateway route |
| <aname="output_database_network_acl_arn"></a>[database\_network\_acl\_arn](#output\_database\_network\_acl\_arn) | ARN of the database network ACL |
| <aname="output_database_network_acl_id"></a>[database\_network\_acl\_id](#output\_database\_network\_acl\_id) | ID of the database network ACL |
| <aname="output_database_route_table_association_ids"></a>[database\_route\_table\_association\_ids](#output\_database\_route\_table\_association\_ids) | List of IDs of the database route table association |
| <aname="output_database_route_table_ids"></a>[database\_route\_table\_ids](#output\_database\_route\_table\_ids) | List of IDs of database route tables |
| <aname="output_database_subnet_arns"></a>[database\_subnet\_arns](#output\_database\_subnet\_arns) | List of ARNs of database subnets |
| <aname="output_database_subnet_group"></a>[database\_subnet\_group](#output\_database\_subnet\_group) | ID of database subnet group |
| <aname="output_database_subnet_group_name"></a>[database\_subnet\_group\_name](#output\_database\_subnet\_group\_name) | Name of database subnet group |
| <aname="output_database_subnets"></a>[database\_subnets](#output\_database\_subnets) | List of IDs of database subnets |
| <aname="output_database_subnets_cidr_blocks"></a>[database\_subnets\_cidr\_blocks](#output\_database\_subnets\_cidr\_blocks) | List of cidr\_blocks of database subnets |
| <aname="output_database_subnets_ipv6_cidr_blocks"></a>[database\_subnets\_ipv6\_cidr\_blocks](#output\_database\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of database subnets in an IPv6 enabled VPC |
| <aname="output_default_network_acl_id"></a>[default\_network\_acl\_id](#output\_default\_network\_acl\_id) | The ID of the default network ACL |
| <aname="output_default_route_table_id"></a>[default\_route\_table\_id](#output\_default\_route\_table\_id) | The ID of the default route table |
| <aname="output_default_security_group_id"></a>[default\_security\_group\_id](#output\_default\_security\_group\_id) | The ID of the security group created by default on VPC creation |
| <aname="output_default_vpc_arn"></a>[default\_vpc\_arn](#output\_default\_vpc\_arn) | The ARN of the Default VPC |
| <aname="output_default_vpc_cidr_block"></a>[default\_vpc\_cidr\_block](#output\_default\_vpc\_cidr\_block) | The CIDR block of the Default VPC |
| <aname="output_default_vpc_default_network_acl_id"></a>[default\_vpc\_default\_network\_acl\_id](#output\_default\_vpc\_default\_network\_acl\_id) | The ID of the default network ACL of the Default VPC |
| <aname="output_default_vpc_default_route_table_id"></a>[default\_vpc\_default\_route\_table\_id](#output\_default\_vpc\_default\_route\_table\_id) | The ID of the default route table of the Default VPC |
| <aname="output_default_vpc_default_security_group_id"></a>[default\_vpc\_default\_security\_group\_id](#output\_default\_vpc\_default\_security\_group\_id) | The ID of the security group created by default on Default VPC creation |
| <aname="output_default_vpc_enable_dns_hostnames"></a>[default\_vpc\_enable\_dns\_hostnames](#output\_default\_vpc\_enable\_dns\_hostnames) | Whether or not the Default VPC has DNS hostname support |
| <aname="output_default_vpc_enable_dns_support"></a>[default\_vpc\_enable\_dns\_support](#output\_default\_vpc\_enable\_dns\_support) | Whether or not the Default VPC has DNS support |
| <aname="output_default_vpc_id"></a>[default\_vpc\_id](#output\_default\_vpc\_id) | The ID of the Default VPC |
| <aname="output_default_vpc_instance_tenancy"></a>[default\_vpc\_instance\_tenancy](#output\_default\_vpc\_instance\_tenancy) | Tenancy of instances spin up within Default VPC |
| <aname="output_default_vpc_main_route_table_id"></a>[default\_vpc\_main\_route\_table\_id](#output\_default\_vpc\_main\_route\_table\_id) | The ID of the main route table associated with the Default VPC |
| <aname="output_dhcp_options_id"></a>[dhcp\_options\_id](#output\_dhcp\_options\_id) | The ID of the DHCP options |
| <aname="output_egress_only_internet_gateway_id"></a>[egress\_only\_internet\_gateway\_id](#output\_egress\_only\_internet\_gateway\_id) | The ID of the egress only Internet Gateway |
| <aname="output_elasticache_network_acl_arn"></a>[elasticache\_network\_acl\_arn](#output\_elasticache\_network\_acl\_arn) | ARN of the elasticache network ACL |
| <aname="output_elasticache_network_acl_id"></a>[elasticache\_network\_acl\_id](#output\_elasticache\_network\_acl\_id) | ID of the elasticache network ACL |
| <aname="output_elasticache_route_table_association_ids"></a>[elasticache\_route\_table\_association\_ids](#output\_elasticache\_route\_table\_association\_ids) | List of IDs of the elasticache route table association |
| <aname="output_elasticache_route_table_ids"></a>[elasticache\_route\_table\_ids](#output\_elasticache\_route\_table\_ids) | List of IDs of elasticache route tables |
| <aname="output_elasticache_subnet_arns"></a>[elasticache\_subnet\_arns](#output\_elasticache\_subnet\_arns) | List of ARNs of elasticache subnets |
| <aname="output_elasticache_subnet_group"></a>[elasticache\_subnet\_group](#output\_elasticache\_subnet\_group) | ID of elasticache subnet group |
| <aname="output_elasticache_subnet_group_name"></a>[elasticache\_subnet\_group\_name](#output\_elasticache\_subnet\_group\_name) | Name of elasticache subnet group |
| <aname="output_elasticache_subnets"></a>[elasticache\_subnets](#output\_elasticache\_subnets) | List of IDs of elasticache subnets |
| <aname="output_elasticache_subnets_cidr_blocks"></a>[elasticache\_subnets\_cidr\_blocks](#output\_elasticache\_subnets\_cidr\_blocks) | List of cidr\_blocks of elasticache subnets |
| <aname="output_elasticache_subnets_ipv6_cidr_blocks"></a>[elasticache\_subnets\_ipv6\_cidr\_blocks](#output\_elasticache\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of elasticache subnets in an IPv6 enabled VPC |
| <aname="output_igw_arn"></a>[igw\_arn](#output\_igw\_arn) | The ARN of the Internet Gateway |
| <aname="output_igw_id"></a>[igw\_id](#output\_igw\_id) | The ID of the Internet Gateway |
| <aname="output_intra_network_acl_arn"></a>[intra\_network\_acl\_arn](#output\_intra\_network\_acl\_arn) | ARN of the intra network ACL |
| <aname="output_intra_network_acl_id"></a>[intra\_network\_acl\_id](#output\_intra\_network\_acl\_id) | ID of the intra network ACL |
| <aname="output_intra_route_table_association_ids"></a>[intra\_route\_table\_association\_ids](#output\_intra\_route\_table\_association\_ids) | List of IDs of the intra route table association |
| <aname="output_intra_route_table_ids"></a>[intra\_route\_table\_ids](#output\_intra\_route\_table\_ids) | List of IDs of intra route tables |
| <aname="output_intra_subnet_arns"></a>[intra\_subnet\_arns](#output\_intra\_subnet\_arns) | List of ARNs of intra subnets |
| <aname="output_intra_subnets"></a>[intra\_subnets](#output\_intra\_subnets) | List of IDs of intra subnets |
| <aname="output_intra_subnets_cidr_blocks"></a>[intra\_subnets\_cidr\_blocks](#output\_intra\_subnets\_cidr\_blocks) | List of cidr\_blocks of intra subnets |
| <aname="output_intra_subnets_ipv6_cidr_blocks"></a>[intra\_subnets\_ipv6\_cidr\_blocks](#output\_intra\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of intra subnets in an IPv6 enabled VPC |
| <aname="output_nat_ids"></a>[nat\_ids](#output\_nat\_ids) | List of allocation ID of Elastic IPs created for AWS NAT Gateway |
| <aname="output_nat_public_ips"></a>[nat\_public\_ips](#output\_nat\_public\_ips) | List of public Elastic IPs created for AWS NAT Gateway |
| <aname="output_natgw_ids"></a>[natgw\_ids](#output\_natgw\_ids) | List of NAT Gateway IDs |
| <aname="output_outpost_network_acl_arn"></a>[outpost\_network\_acl\_arn](#output\_outpost\_network\_acl\_arn) | ARN of the outpost network ACL |
| <aname="output_outpost_network_acl_id"></a>[outpost\_network\_acl\_id](#output\_outpost\_network\_acl\_id) | ID of the outpost network ACL |
| <aname="output_outpost_subnet_arns"></a>[outpost\_subnet\_arns](#output\_outpost\_subnet\_arns) | List of ARNs of outpost subnets |
| <aname="output_outpost_subnets"></a>[outpost\_subnets](#output\_outpost\_subnets) | List of IDs of outpost subnets |
| <aname="output_outpost_subnets_cidr_blocks"></a>[outpost\_subnets\_cidr\_blocks](#output\_outpost\_subnets\_cidr\_blocks) | List of cidr\_blocks of outpost subnets |
| <aname="output_outpost_subnets_ipv6_cidr_blocks"></a>[outpost\_subnets\_ipv6\_cidr\_blocks](#output\_outpost\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of outpost subnets in an IPv6 enabled VPC |
| <aname="output_private_ipv6_egress_route_ids"></a>[private\_ipv6\_egress\_route\_ids](#output\_private\_ipv6\_egress\_route\_ids) | List of IDs of the ipv6 egress route |
| <aname="output_private_nat_gateway_route_ids"></a>[private\_nat\_gateway\_route\_ids](#output\_private\_nat\_gateway\_route\_ids) | List of IDs of the private nat gateway route |
| <aname="output_private_network_acl_arn"></a>[private\_network\_acl\_arn](#output\_private\_network\_acl\_arn) | ARN of the private network ACL |
| <aname="output_private_network_acl_id"></a>[private\_network\_acl\_id](#output\_private\_network\_acl\_id) | ID of the private network ACL |
| <aname="output_private_route_table_association_ids"></a>[private\_route\_table\_association\_ids](#output\_private\_route\_table\_association\_ids) | List of IDs of the private route table association |
| <aname="output_private_route_table_ids"></a>[private\_route\_table\_ids](#output\_private\_route\_table\_ids) | List of IDs of private route tables |
| <aname="output_private_subnet_arns"></a>[private\_subnet\_arns](#output\_private\_subnet\_arns) | List of ARNs of private subnets |
| <aname="output_private_subnets"></a>[private\_subnets](#output\_private\_subnets) | List of IDs of private subnets |
| <aname="output_private_subnets_cidr_blocks"></a>[private\_subnets\_cidr\_blocks](#output\_private\_subnets\_cidr\_blocks) | List of cidr\_blocks of private subnets |
| <aname="output_private_subnets_ipv6_cidr_blocks"></a>[private\_subnets\_ipv6\_cidr\_blocks](#output\_private\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of private subnets in an IPv6 enabled VPC |
| <aname="output_public_internet_gateway_ipv6_route_id"></a>[public\_internet\_gateway\_ipv6\_route\_id](#output\_public\_internet\_gateway\_ipv6\_route\_id) | ID of the IPv6 internet gateway route |
| <aname="output_public_internet_gateway_route_id"></a>[public\_internet\_gateway\_route\_id](#output\_public\_internet\_gateway\_route\_id) | ID of the internet gateway route |
| <aname="output_public_network_acl_arn"></a>[public\_network\_acl\_arn](#output\_public\_network\_acl\_arn) | ARN of the public network ACL |
| <aname="output_public_network_acl_id"></a>[public\_network\_acl\_id](#output\_public\_network\_acl\_id) | ID of the public network ACL |
| <aname="output_public_route_table_association_ids"></a>[public\_route\_table\_association\_ids](#output\_public\_route\_table\_association\_ids) | List of IDs of the public route table association |
| <aname="output_public_route_table_ids"></a>[public\_route\_table\_ids](#output\_public\_route\_table\_ids) | List of IDs of public route tables |
| <aname="output_public_subnet_arns"></a>[public\_subnet\_arns](#output\_public\_subnet\_arns) | List of ARNs of public subnets |
| <aname="output_public_subnets"></a>[public\_subnets](#output\_public\_subnets) | List of IDs of public subnets |
| <aname="output_public_subnets_cidr_blocks"></a>[public\_subnets\_cidr\_blocks](#output\_public\_subnets\_cidr\_blocks) | List of cidr\_blocks of public subnets |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_redshift_subnet_group"></a>[redshift\_subnet\_group](#output\_redshift\_subnet\_group) | ID of redshift subnet group |
| <aname="output_redshift_subnets"></a>[redshift\_subnets](#output\_redshift\_subnets) | List of IDs of redshift subnets |
| <aname="output_redshift_subnets_cidr_blocks"></a>[redshift\_subnets\_cidr\_blocks](#output\_redshift\_subnets\_cidr\_blocks) | List of cidr\_blocks of redshift subnets |
| <aname="output_redshift_subnets_ipv6_cidr_blocks"></a>[redshift\_subnets\_ipv6\_cidr\_blocks](#output\_redshift\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of redshift subnets in an IPv6 enabled VPC |
| <aname="output_this_customer_gateway"></a>[this\_customer\_gateway](#output\_this\_customer\_gateway) | Map of Customer Gateway attributes |
| <aname="output_vgw_arn"></a>[vgw\_arn](#output\_vgw\_arn) | The ARN of the VPN Gateway |
| <aname="output_vgw_id"></a>[vgw\_id](#output\_vgw\_id) | The ID of the VPN Gateway |
| <aname="output_vpc_arn"></a>[vpc\_arn](#output\_vpc\_arn) | The ARN of the VPC |
| <aname="output_vpc_cidr_block"></a>[vpc\_cidr\_block](#output\_vpc\_cidr\_block) | The CIDR block of the VPC |
| <aname="output_vpc_enable_dns_hostnames"></a>[vpc\_enable\_dns\_hostnames](#output\_vpc\_enable\_dns\_hostnames) | Whether or not the VPC has DNS hostname support |
| <aname="output_vpc_enable_dns_support"></a>[vpc\_enable\_dns\_support](#output\_vpc\_enable\_dns\_support) | Whether or not the VPC has DNS support |
| <aname="output_vpc_flow_log_cloudwatch_iam_role_arn"></a>[vpc\_flow\_log\_cloudwatch\_iam\_role\_arn](#output\_vpc\_flow\_log\_cloudwatch\_iam\_role\_arn) | The ARN of the IAM role used when pushing logs to Cloudwatch log group |
| <aname="output_vpc_flow_log_destination_arn"></a>[vpc\_flow\_log\_destination\_arn](#output\_vpc\_flow\_log\_destination\_arn) | The ARN of the destination for VPC Flow Logs |
| <aname="output_vpc_flow_log_destination_type"></a>[vpc\_flow\_log\_destination\_type](#output\_vpc\_flow\_log\_destination\_type) | The type of the destination for VPC Flow Logs |
| <aname="output_vpc_flow_log_id"></a>[vpc\_flow\_log\_id](#output\_vpc\_flow\_log\_id) | The ID of the Flow Log resource |
| <aname="output_vpc_id"></a>[vpc\_id](#output\_vpc\_id) | The ID of the VPC |
| <aname="output_vpc_instance_tenancy"></a>[vpc\_instance\_tenancy](#output\_vpc\_instance\_tenancy) | Tenancy of instances spin up within VPC |
| <aname="output_vpc_ipv6_association_id"></a>[vpc\_ipv6\_association\_id](#output\_vpc\_ipv6\_association\_id) | The association ID for the IPv6 CIDR block |
| <aname="output_vpc_ipv6_cidr_block"></a>[vpc\_ipv6\_cidr\_block](#output\_vpc\_ipv6\_cidr\_block) | The IPv6 CIDR block |
| <aname="output_vpc_main_route_table_id"></a>[vpc\_main\_route\_table\_id](#output\_vpc\_main\_route\_table\_id) | The ID of the main route table associated with this VPC |
| <aname="output_vpc_owner_id"></a>[vpc\_owner\_id](#output\_vpc\_owner\_id) | The ID of the AWS account that owns the VPC |
| <aname="output_vpc_secondary_cidr_blocks"></a>[vpc\_secondary\_cidr\_blocks](#output\_vpc\_secondary\_cidr\_blocks) | List of secondary CIDR blocks of the VPC |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshidt route table association |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshidt route table association |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshidt route table association |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshidt route table association |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshidt route table association |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshidt route table association |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_public_subnets_ipv6_cidr_blocks"></a>[public\_subnets\_ipv6\_cidr\_blocks](#output\_public\_subnets\_ipv6\_cidr\_blocks) | List of IPv6 cidr\_blocks of public subnets in an IPv6 enabled VPC |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_arn"></a>[redshift\_network\_acl\_arn](#output\_redshift\_network\_acl\_arn) | ARN of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_network_acl_id"></a>[redshift\_network\_acl\_id](#output\_redshift\_network\_acl\_id) | ID of the redshift network ACL |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshidt route table association |
| <aname="output_redshift_public_route_table_association_ids"></a>[redshift\_public\_route\_table\_association\_ids](#output\_redshift\_public\_route\_table\_association\_ids) | List of IDs of the public redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_association_ids"></a>[redshift\_route\_table\_association\_ids](#output\_redshift\_route\_table\_association\_ids) | List of IDs of the redshift route table association |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_route_table_ids"></a>[redshift\_route\_table\_ids](#output\_redshift\_route\_table\_ids) | List of IDs of redshift route tables |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
| <aname="output_redshift_subnet_arns"></a>[redshift\_subnet\_arns](#output\_redshift\_subnet\_arns) | List of ARNs of redshift subnets |
description="(Optional) The ID of an IPv4 IPAM pool you want to use for allocating this VPC's CIDR."
type=string
default=null
}
variable"putin_khuylo"{
variable"putin_khuylo"{
description="Do you agree that Putin doesn't respect Ukrainian sovereignty and territorial integrity? More info: https://en.wikipedia.org/wiki/Putin_khuylo!"
description="Do you agree that Putin doesn't respect Ukrainian sovereignty and territorial integrity? More info: https://en.wikipedia.org/wiki/Putin_khuylo!"