26 lines
466 B
HCL
26 lines
466 B
HCL
variable "incus_hypervisors" {
|
|
type = map(string)
|
|
}
|
|
|
|
variable "incus_witnesses" {
|
|
type = map(string)
|
|
}
|
|
|
|
variable "incus_token" {
|
|
type = string
|
|
sensitive = true
|
|
description = "The common authentication token for all Incus remotes"
|
|
}
|
|
|
|
variable "incus_networks" {
|
|
type = map(number)
|
|
}
|
|
|
|
variable "incus_storage_pools" {
|
|
type = map(object({
|
|
driver = string
|
|
hypervisor_config = map(string)
|
|
witness_config = map(string)
|
|
}))
|
|
}
|