From 171daa5383106da70b68509c7e8e5cd088678c29 Mon Sep 17 00:00:00 2001 From: pgijsbertsen <117165507+pgijsbertsen@users.noreply.github.com> Date: Fri, 17 Apr 2026 20:27:48 +0200 Subject: [PATCH 1/3] chore: Use proxmox_download_file in stead of deprecated resource --- pve01.wheatley.in/templates/talos/main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pve01.wheatley.in/templates/talos/main.tf b/pve01.wheatley.in/templates/talos/main.tf index 0f6df3a..f814da6 100644 --- a/pve01.wheatley.in/templates/talos/main.tf +++ b/pve01.wheatley.in/templates/talos/main.tf @@ -22,7 +22,7 @@ locals { storagepool = "nvme-fastpool" } -resource "proxmox_virtual_environment_download_file" "talos-image" { +resource "proxmox_download_file" "talos-image" { for_each = toset(var.talos_versions) node_name = "pve01" @@ -35,7 +35,7 @@ resource "proxmox_virtual_environment_download_file" "talos-image" { } resource "proxmox_virtual_environment_vm" "talos-template" { - depends_on = [proxmox_virtual_environment_download_file.talos-image] + depends_on = [proxmox_download_file.talos-image] for_each = toset(var.talos_versions) template = true @@ -63,7 +63,7 @@ resource "proxmox_virtual_environment_vm" "talos-template" { disk { datastore_id = local.storagepool interface = "virtio0" - file_id = proxmox_virtual_environment_download_file.talos-image[each.value].id + file_id = proxmox_download_file.talos-image[each.value].id file_format = "raw" } efi_disk { -- 2.39.5 From 0543790f1bf1579df583d4c956c29641bef4f60f Mon Sep 17 00:00:00 2001 From: pgijsbertsen <117165507+pgijsbertsen@users.noreply.github.com> Date: Fri, 17 Apr 2026 20:30:18 +0200 Subject: [PATCH 2/3] chore: Bump talos versions --- pve01.wheatley.in/templates/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pve01.wheatley.in/templates/main.tf b/pve01.wheatley.in/templates/main.tf index eb46ee2..68bd9dc 100644 --- a/pve01.wheatley.in/templates/main.tf +++ b/pve01.wheatley.in/templates/main.tf @@ -21,5 +21,5 @@ provider "proxmox" { module "talos" { source = "./talos" - talos_versions = ["1.12.2"] + talos_versions = ["1.12.6", "1.13.0-rc.0"] } -- 2.39.5 From b3f9e9058869d3ff933978474102d1af7bac51d1 Mon Sep 17 00:00:00 2001 From: pgijsbertsen <117165507+pgijsbertsen@users.noreply.github.com> Date: Fri, 17 Apr 2026 20:31:58 +0200 Subject: [PATCH 3/3] fix; Remove rc release --- pve01.wheatley.in/templates/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pve01.wheatley.in/templates/main.tf b/pve01.wheatley.in/templates/main.tf index 68bd9dc..b478de6 100644 --- a/pve01.wheatley.in/templates/main.tf +++ b/pve01.wheatley.in/templates/main.tf @@ -21,5 +21,5 @@ provider "proxmox" { module "talos" { source = "./talos" - talos_versions = ["1.12.6", "1.13.0-rc.0"] + talos_versions = ["1.12.6"] } -- 2.39.5