Skip to content

Commit 1aa1d86

Browse files
committed
terraform: adding tfvars file
1 parent d0650ef commit 1aa1d86

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
vpc_cidr = "10.0.0.0/16"
2+
availability_zones = ["us-east-1a", "us-east-1b", "us-east-1c"]
3+
private_subnets = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24"]
4+
public_subnets = ["10.0.101.0/24", "10.0.102.0/24", "10.0.103.0/24"]
5+
enable_nat_gateway = true
6+
enable_vpn_gateway = false
7+
vpc_tags = {
8+
Terraform = "true"
9+
Environment = "prod"
10+
}

0 commit comments

Comments
 (0)