From 4d3cbc24c718e38f3d5115158afcb8532a5bbd43 Mon Sep 17 00:00:00 2001 From: Anton Babenko Date: Thu, 1 Mar 2018 20:21:41 +0100 Subject: [PATCH] Added default CIDR block as 0.0.0.0/0 --- variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.tf b/variables.tf index 233d5779b..89e376c7c 100644 --- a/variables.tf +++ b/variables.tf @@ -9,8 +9,8 @@ variable "name" { } variable "cidr" { - description = "The CIDR block for the VPC" - default = "" + description = "The CIDR block for the VPC. Default value is a valid CIDR, but not acceptable by AWS and should be overriden" + default = "0.0.0.0/0" } variable "instance_tenancy" {