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

24 lines
410 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
}))
}))
}
variable "asrock_machines" {
type = list(object({
host_name = string
power_type = string
mac_addr = string
}))
}