mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
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
29 lines
537 B
Terraform
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"
|
|
}
|