terraform/maas/arif-home/00-variables.tf

16 lines
280 B
Terraform
Raw Normal View History

variable "spaces" {
type = list(object({
space = string
vid = number
cidr = string
mtu = number
managed = bool
ip_range = list(object({
type = string
start_ip = string
end_ip = string
comment = string
}))
}))
}