terraform/maas/arif-home/00-variables.tf
Arif Ali cd4cb5291b
Update to latest plans
Update the openstack ones so that they don't overlap devices in lab

Add the MAAS plans that had been staged for a bit
2024-02-08 19:05:24 +00:00

24 lines
410 B
HCL

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