terraform/juju/home-maas/00-variables.tf
Arif Ali 9c40b400cf
various updates
* Add the variabe definition of machines, which was in another file
* Add all the networking bits for MAAS
2024-01-02 18:18:39 +00:00

47 lines
642 B
HCL

variable "machines" {
type = list(object({
machine_id = number
constraints = string
}))
}
variable openstack-origin {
type = string
default = "distro"
}
variable osd-devices {
type = string
default = ""
}
variable customize-failure-domain {
type = string
default = "true"
}
variable reserved-host-memory {
type = string
default = "512"
}
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 = ""
}