Skip to content

Commit 173bea7

Browse files
committed
Updated readme file
1 parent 0a9c29e commit 173bea7

File tree

1 file changed

+26
-4
lines changed

1 file changed

+26
-4
lines changed

README.md

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,30 +58,52 @@ This module supports three scenarios to create Network resource on AWS. Each wil
5858

5959
- **simple-vpc (default behavior):** To create a VPC with public subnets and IGW.
6060
- `vpc_cidr = ""`
61-
- `enable_public_subnet = true`
61+
- `public_subnet_enabled = true`
62+
- `auto_assign_public_ip = true`
6263
- **vpc-with-private-sub:** To create a VPC with public subnets, private subnets, IGW gateway and NAT gateway.
6364
- `vpc_cidr = ""`
6465
- `public_subnet_enabled = true`
6566
- `private_subnet_enabled = true`
67+
- `auto_assign_public_ip = true`
6668

6769
- **complete-vpc-with-vpn:** To create a VPC with public, private, database and intra subnets along with an IGW and NAT gateway. Jump server/Bastion Host is also configured.
68-
- `vpc_cidr = ""`
70+
- `vpc_cidr = ""`
6971
- `public_subnet_enabled = true`
7072
- `private_subnet_enabled = true`
7173
- `database_subnet_enabled = true`
7274
- `intra_subnet_enabled = true`
75+
- `auto_assign_public_ip = true`
7376
- `one_nat_gateway_per_az = true`
7477
- `vpn_server_enabled = true`
7578
- `vpn_server_instance_type = "t3a.small"`
76-
- `vpn_key_pair = ""`
79+
- `vpn_key_pair_name = ""`
80+
- `availability_zones = 2`
7781
- `flow_log_enabled = true`
7882
- `flow_log_max_aggregation_interval = 60`
7983
- `flow_log_cloudwatch_log_group_retention_in_days = 90`
8084

8185
- **vpc-peering:** VPC peering support is available using submodule `vpc_peering`. Refer [Peering Docs](https://github.com/squareops/terraform-aws-vpc/tree/main/modules/vpc_peering) for more information
86+
- `accepter_name = ""`
87+
- `accepter_vpc_id = ""`
88+
- `accepter_vpc_region = ""`
89+
- `requester_name = ""`
90+
- `requester_vpc_id = ""`
91+
- `requester_vpc_region = ""`
92+
- `auto_assign_public_ip = true`
93+
- `one_nat_gateway_per_az = true`
8294

8395
- **vpc-with-ipv6:** To create VPC with IPv6 support, you only need to enable the parameter `ipv6_enabled`. Rest all the configurations will be taken care by module. Refer for example [vpc-with-ipv6](https://github.com/squareops/terraform-aws-vpc/tree/main/examples/vpc-with-ipv6) for more information.
84-
96+
- `vpc_cidr = ""`
97+
- `public_subnet_enabled = true`
98+
- `private_subnet_enabled = true`
99+
- `database_subnet_enabled = true`
100+
- `intra_subnet_enabled = true`
101+
- `auto_assign_public_ip = true`
102+
- `ipv6_enabled = true`
103+
- `public_subnet_assign_ipv6_address_on_creation = true`
104+
- `private_subnet_assign_ipv6_address_on_creation = true`
105+
- `database_subnet_assign_ipv6_address_on_creation = true`
106+
- `intra_subnet_assign_ipv6_address_on_creation = true`
85107

86108
# IAM Permissions
87109
The required IAM permissions to create resources from this module can be found [here](https://github.com/squareops/terraform-aws-vpc/blob/main/IAM.md)

0 commit comments

Comments
 (0)