scottslowe-learning-tools/terraform/aws/simple-module/main.tf
Scott Lowe 23f55bbdcc
Fix small typo
Fix a small typo in one of the attributes of the VPCs

Signed-off-by: Scott Lowe <scott.lowe@scottlowe.org>
2017-05-25 09:02:44 -06:00

23 lines
631 B
HCL

module "vpc20" {
source = "./modules/vpc"
name = "test-vpc-1"
vpc_cidr_block = "10.20.0.0/16"
vpc_dns_hostnames = "true"
vpc_dns_support = "true"
subnet_cidr_block = "10.20.1.0/24"
subnet_map_pub_ip = "true"
}
module "vpc50" {
source = "./modules/vpc"
name = "test-vpc-2"
vpc_cidr_block = "10.50.0.0/16"
vpc_dns_hostnames = "true"
vpc_dns_support = "true"
subnet_cidr_block = "10.50.1.0/24"
subnet_map_pub_ip = "true"
}