mirror of
https://github.com/ghndrx/linux-copy-demo.git
synced 2026-02-10 06:54:56 +00:00
16 lines
439 B
HCL
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"
|
|
}
|