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"
|
|
|
|
}
|
|
|
|
|
2024-05-06 16:44:43 +00:00
|
|
|
variable openstack-region {
|
|
|
|
type = string
|
|
|
|
default = "RegionOne"
|
|
|
|
}
|
|
|
|
|
2023-10-27 17:18:20 +00:00
|
|
|
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 = ""
|
|
|
|
}
|
2024-05-06 16:44:43 +00:00
|
|
|
|
|
|
|
variable nagios-context {
|
|
|
|
type = string
|
|
|
|
default = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
variable mysql-connections {
|
|
|
|
type = string
|
|
|
|
default = "4000"
|
|
|
|
}
|
|
|
|
|
|
|
|
variable mysql-tuning-level {
|
|
|
|
type = string
|
|
|
|
default = "safest"
|
|
|
|
}
|