mirror of
https://github.com/optim-enterprises-bv/homelab.git
synced 2025-10-30 09:32:38 +00:00
26 lines
513 B
HCL
26 lines
513 B
HCL
variable "proxmox_node" {
|
|
type = object({
|
|
name = string
|
|
endpoint = string
|
|
insecure = bool
|
|
username = string
|
|
api_token = string
|
|
image_datastore = string
|
|
})
|
|
sensitive = true
|
|
}
|
|
|
|
variable "haos_version" {
|
|
type = string
|
|
}
|
|
|
|
variable "haos_download_url" {
|
|
type = string
|
|
default = "https://github.com/home-assistant/operating-system/releases/download"
|
|
}
|
|
|
|
variable "local_file" {
|
|
type = string
|
|
default = "home-assistant/haos_ova.qcow2"
|
|
}
|