Skip to content

Commit 88a101b

Browse files
authored
Added default CIDR block as 0.0.0.0/0 (terraform-aws-modules#93)
1 parent 6fb8f1f commit 88a101b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ variable "name" {
99
}
1010

1111
variable "cidr" {
12-
description = "The CIDR block for the VPC"
13-
default = ""
12+
description = "The CIDR block for the VPC. Default value is a valid CIDR, but not acceptable by AWS and should be overriden"
13+
default = "0.0.0.0/0"
1414
}
1515

1616
variable "instance_tenancy" {

0 commit comments

Comments
 (0)