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