Files
homelab/tofu/home-assistant/variables.tf
Vegard Hagen 207b1892bf feat: cleanup of remodelling
move remodel folder down to root and delete old unused manifests
2024-07-21 23:21:12 +02:00

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"
}