From 23f55bbdcc24a90b5cf4dd2b26cc095264df437e Mon Sep 17 00:00:00 2001 From: Scott Lowe Date: Thu, 25 May 2017 09:02:44 -0600 Subject: [PATCH] Fix small typo Fix a small typo in one of the attributes of the VPCs Signed-off-by: Scott Lowe --- terraform/aws/simple-module/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/aws/simple-module/main.tf b/terraform/aws/simple-module/main.tf index 8a47463..f5e391e 100644 --- a/terraform/aws/simple-module/main.tf +++ b/terraform/aws/simple-module/main.tf @@ -13,7 +13,7 @@ module "vpc20" { module "vpc50" { source = "./modules/vpc" - name = "test-vpc-1" + name = "test-vpc-2" vpc_cidr_block = "10.50.0.0/16" vpc_dns_hostnames = "true" vpc_dns_support = "true"