19 lines
387 B
Terraform
19 lines
387 B
Terraform
variable "resource_group_name" {
|
|
description = "Name of the resource group"
|
|
type = string
|
|
}
|
|
|
|
variable "location" {
|
|
description = "Azure region"
|
|
type = string
|
|
}
|
|
|
|
variable "address_space" {
|
|
description = "CIDR for the Virtual Network"
|
|
type = list(string)
|
|
}
|
|
|
|
variable "subnets" {
|
|
description = "Map of subnet names and CIDRs"
|
|
type = map(string)
|
|
} |