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
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,6 @@ Terraform version 0.10.3 or newer is required for this module to work.
166
166
| assign_generated_ipv6_cidr_block | Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. You cannot specify the range of IP addresses, or the size of the CIDR block | string |`false`| no |
167
167
| azs | A list of availability zones in the region | string |`<list>`| no |
168
168
| 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 |
169
-
| secondary_cidr_blocks | A List of secondary CIDR blocks to add to the vpc. Will append the CIDR blocks before subnet operations are applied | string |`<list>`| no |
170
169
| create_database_subnet_group | Controls if database subnet group should be created | string |`true`| no |
171
170
| create_database_subnet_route_table | Controls if separate route table for database should be created | string |`false`| no |
172
171
| create_elasticache_subnet_route_table | Controls if separate route table for elasticache should be created | string |`false`| no |
@@ -222,6 +221,7 @@ Terraform version 0.10.3 or newer is required for this module to work.
222
221
| redshift_subnet_tags | Additional tags for the redshift subnets | string |`<map>`| no |
223
222
| redshift_subnets | A list of redshift subnets | list |`<list>`| no |
224
223
| reuse_nat_ips | Should be true if you don't want EIPs to be created for your NAT Gateways and will instead pass them in via the 'external_nat_ip_ids' variable | string |`false`| no |
224
+
| secondary_cidr_blocks | List of secondary CIDR blocks to associate with the VPC to extend the IP Address pool | string |`<list>`| no |
225
225
| single_nat_gateway | Should be true if you want to provision a single shared NAT Gateway across all of your private networks | string |`false`| no |
226
226
| tags | A map of tags to add to all resources | string |`<map>`| no |
227
227
| vpc_tags | Additional tags for the VPC | string |`<map>`| no |
@@ -281,6 +281,7 @@ Terraform version 0.10.3 or newer is required for this module to work.
281
281
| vpc_id | VPC |
282
282
| vpc_instance_tenancy | Tenancy of instances spin up within VPC |
283
283
| vpc_main_route_table_id | The ID of the main route table associated with this VPC |
284
+
| vpc_secondary_cidr_blocks | List of secondary CIDR blocks of the VPC |
Configuration in this directory creates set of VPC resources across multiple CIDR blocks.
3
-
There is a public and private subnet created per availability zone in addition to single NAT Gateway shared between all 3 availability zones.
4
-
## Usage
5
-
To run this example you need to execute:
6
-
```bash
2
+
3
+
Configuration in this directory creates set of VPC resources across multiple CIDR blocks.
4
+
5
+
There is a public and private subnet created per availability zone in addition to single NAT Gateway shared between all 3 availability zones.
6
+
7
+
## Usage
8
+
9
+
To run this example you need to execute:
10
+
11
+
```bash
7
12
$ terraform init
8
13
$ terraform plan
9
14
$ terraform apply
10
15
```
11
-
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.
12
-
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
13
-
## Outputs
14
-
| Name | Description |
16
+
17
+
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.
18
+
19
+
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
20
+
21
+
## Outputs
22
+
23
+
| Name | Description |
15
24
|------|-------------|
16
25
| nat_public_ips | NAT gateways |
17
26
| private_subnets | Subnets |
18
27
| public_subnets | List of IDs of public subnets |
0 commit comments