Files
homelab-v/tofu/home-assistant/variables.tofu
T
Vegard Hagen f47309b3d1 fix(tofu): switching to .tofu extension
Picking sides

No real functional change except the cute tofu icon in my IDE instead of the purple T
2025-04-18 17:19:15 +02:00

29 lines
537 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"
}