Files
homelab-v/tofu/kubernetes/bootstrap/volumes/variables.tofu
T

20 lines
359 B
HCL

variable "proxmox_api" {
type = object({
endpoint = string
insecure = bool
cluster_name = string
})
}
variable "volumes" {
type = map(
object({
node = string
size = string
storage = optional(string, "local-zfs")
vmid = optional(number, 9999)
format = optional(string, "raw")
})
)
}