add vpc_cidr

This commit is contained in:
Ryan Malloy 2024-03-28 18:49:02 +00:00
parent 360bc45e11
commit 5f9f239a15
1 changed files with 4 additions and 0 deletions

View File

@ -28,3 +28,7 @@ variable "tls_key_algorithm" {
default = "RSA" default = "RSA"
type = string type = string
} }
variable "vpc_cidr" {
description = "VPC CIDR"
default = "10.123.0.0/16"
}