mirror of
https://github.com/outbackdingo/iac-talos-cluster.git
synced 2026-01-27 10:19:15 +00:00
- use bpg/proxmox instead of TheGameProfi/proxmox (or telmate/proxmox) - add macaddress provider - rename var talos_worker_nodes to worker_nodes - split var talos_iso_image_location into talos_iso_destination_filename and talos_iso_destination_storage_pool
26 lines
773 B
HCL
26 lines
773 B
HCL
variable "talos_iso_download_url" {
|
|
description = "Location to download the Talos iso image from"
|
|
type = string
|
|
# % is replaced by talos_version
|
|
default = "https://github.com/siderolabs/talos/releases/download/v%/metal-amd64.iso"
|
|
}
|
|
|
|
variable "talos_iso_destination_filename" {
|
|
description = "Filename of the Talos iso image to store"
|
|
type = string
|
|
# % is replaced by talos_version
|
|
default = "talos-%-metal-amd64.iso"
|
|
}
|
|
|
|
variable "talos_iso_destination_server" {
|
|
description = "Proxmox server to store the Talos iso image on"
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "talos_iso_destination_storage_pool" {
|
|
description = "Proxmox storage to store the Talos iso image on"
|
|
type = string
|
|
default = "local"
|
|
}
|