Files
homelab-v/tofu/home-assistant/variables.tf
T
Vegard Hagen 737e047c8e refactor(tofu): extract variables into their own files
The .tfvars files are normally gitignored, but they serve as an example here. Just need to make sure I don't commit a secret...

Inpired by #236
2025-03-23 17:19:46 +01:00

29 lines
537 B
Terraform

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