Files
iac_demo/modules/network/variables.tf
T
2025-09-26 09:36:07 +00:00

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)
}