Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Last active February 27, 2019 01:50
Show Gist options
  • Select an option

  • Save 100daysofdevops/c6058cebca787911ee71f93901f2b6e1 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/c6058cebca787911ee71f93901f2b6e1 to your computer and use it in GitHub Desktop.
variable "vpc_cidr" {
default = "10.0.0.0/16"
}
variable "public_cidrs" {
type = "list"
default = ["10.0.1.0/24","10.0.2.0/24"]
}
variable "private_cidrs" {
type = "list"
default = ["10.0.3.0/24","10.0.4.0/24"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment