2024-01-02 18:18:39 +00:00
|
|
|
variable "machines" {
|
|
|
|
type = list(object({
|
|
|
|
machine_id = number
|
|
|
|
constraints = string
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2023-10-27 17:18:20 +00:00
|
|
|
variable openstack-origin {
|
|
|
|
type = string
|
|
|
|
default = "distro"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable osd-devices {
|
|
|
|
type = string
|
|
|
|
default = ""
|
|
|
|
}
|
|
|
|
|
2023-11-29 10:40:29 +00:00
|
|
|
variable customize-failure-domain {
|
|
|
|
type = string
|
|
|
|
default = "true"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable reserved-host-memory {
|
|
|
|
type = string
|
|
|
|
default = "512"
|
|
|
|
}
|
2023-12-15 16:35:17 +00:00
|
|
|
|
|
|
|
variable worker-multiplier {
|
|
|
|
type = string
|
|
|
|
default = "0.25"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable bridge-mappings {
|
|
|
|
type = string
|
|
|
|
default = ""
|
|
|
|
|
|
|
|
}
|
|
|
|
variable data-port {
|
|
|
|
type = string
|
|
|
|
default = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
variable dns-servers {
|
|
|
|
type = string
|
|
|
|
default = ""
|
|
|
|
}
|