From 43925d3ff45e43e307f900d206801ff09b6a6386 Mon Sep 17 00:00:00 2001 From: Guilhem Castillo <6185393+KasteM34@users.noreply.github.com> Date: Mon, 4 Mar 2019 19:21:17 +0100 Subject: [PATCH] replace /20 to /16 in README.md As an example /20 won't work as it covers until "10.20.15.255" (4096 possible IPs). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3ccb3e26..0f241ab9 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ module "atlantis" { name = "atlantis" # VPC - cidr = "10.20.0.0/20" + cidr = "10.20.0.0/16" azs = ["eu-west-1a", "eu-west-1b", "eu-west-1c"] private_subnets = ["10.20.1.0/24", "10.20.2.0/24", "10.20.3.0/24"] public_subnets = ["10.20.101.0/24", "10.20.102.0/24", "10.20.103.0/24"]