Created
January 15, 2023 10:52
-
-
Save rumeshbandara/20d47e9a1ae36657738ce7e0ac027f4b to your computer and use it in GitHub Desktop.
Terraform Variables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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