Files
iac-talos-cluster/vars-iso.tf
roeldev 14e37ad283 Fix #1
- 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
2024-05-14 19:33:28 +02:00

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