Skip to content

Commit

Permalink
updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvraj-revnue committed Sep 14, 2023
1 parent 0a4e791 commit 0e19470
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,11 @@ module "vpc" {
vpc_cidr = "10.0.0.0/16"
environment = "production"
ipv6_enabled = true
create_ipam_pool = false
ipam_enabled = false
flow_log_enabled = true
vpn_key_pair_name = module.key_pair_vpn.key_pair_name
availability_zones = 2
availability_zones = ["us-east-1a", "us-east-1b"]
vpn_server_enabled = false
intra_subnet_enabled = true
auto_assign_public_ip = true
Expand Down
2 changes: 1 addition & 1 deletion examples/ipam-managed-vpc/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ module "vpc_ipam" {
region = local.region
create_ipam_pool = true
vpc_cidr = local.vpc_cidr
availability_zones = ["ap-south-1a", "ap-south-1b"]
availability_zones = ["us-east-1a", "us-east-1b"]

private_subnet_enabled = true
public_subnet_enabled = true
Expand Down
2 changes: 1 addition & 1 deletion examples/vpc-native-ipv6/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module "vpc" {
ipv6_only = local.ipv6_only
environment = local.environment
ipv6_enabled = local.ipv6_enabled
availability_zones = ["ap-south-1a", "ap-south-1b"]
availability_zones = ["us-east-1a", "us-east-1b"]
public_subnet_enabled = true
private_subnet_enabled = true
intra_subnet_enabled = true
Expand Down
2 changes: 1 addition & 1 deletion examples/vpc-with-secondary-cidr/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module "vpc" {
name = local.name
vpc_cidr = local.vpc_cidr
environment = local.environment
availability_zones = ["ap-south-1a", "ap-south-1b"]
availability_zones = ["us-east-1a", "us-east-1b"]
public_subnet_enabled = true
private_subnet_enabled = true
auto_assign_public_ip = true
Expand Down

0 comments on commit 0e19470

Please sign in to comment.