Skip to content

Instantly share code, notes, and snippets.

@rumeshbandara
Created January 15, 2023 10:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rumeshbandara/20d47e9a1ae36657738ce7e0ac027f4b to your computer and use it in GitHub Desktop.
Save rumeshbandara/20d47e9a1ae36657738ce7e0ac027f4b to your computer and use it in GitHub Desktop.
Terraform Variables
variable "vpc_cidr" {
type = string
default = "10.0.0.0/16"
}
variable "public_subnet_cidrs" {
type = list(string)
default = ["10.0.1.0/24", "10.0.2.0/24"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment