mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
29 lines
542 B
HCL
29 lines
542 B
HCL
variable "proxmox_cluster" {
|
|
type = object({
|
|
name = string
|
|
endpoint = string
|
|
insecure = bool
|
|
username = string
|
|
image_datastore = string
|
|
})
|
|
}
|
|
|
|
variable "proxmox_api_token" {
|
|
type = 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"
|
|
}
|