2024-01-02 18:18:39 +00:00
|
|
|
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
|
|
|
|
}))
|
|
|
|
}))
|
|
|
|
}
|
2024-02-08 19:05:24 +00:00
|
|
|
|
|
|
|
variable "asrock_machines" {
|
|
|
|
type = list(object({
|
|
|
|
host_name = string
|
|
|
|
power_type = string
|
|
|
|
mac_addr = string
|
|
|
|
}))
|
|
|
|
}
|