Skip to content

Commit

Permalink
Added default CIDR block as 0.0.0.0/0 (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbabenko authored Mar 6, 2018
1 parent 6fb8f1f commit 88a101b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 88a101b

Please sign in to comment.