Files
linux-copy-demo/modules/vpc/variables.tf
2023-04-12 16:23:57 -07:00

16 lines
439 B
HCL

variable "network_name" {
type = string
description = "Name of the VPC network to create"
}
variable "subnets_cidr_list" {
type = list(string)
default = ["10.0.1.0/24", "10.0.2.0/24", "10.0.3.0/24", "10.0.4.0/24"]
description = "List of CIDR blocks for the subnets to create within the VPC network"
}
variable "region" {
type = string
description = "Region where the VPC subnets will be created"
}