From 649f1ba59878f2e32dd2e3102a55e45525a0898f Mon Sep 17 00:00:00 2001 From: pgijsbertsen <117165507+pgijsbertsen@users.noreply.github.com> Date: Mon, 12 Jan 2026 11:49:28 +0100 Subject: [PATCH] chore(k8s-wheatley): Ensure nodes aren't recreated on template change --- pve01.wheatley.in/k8s-wheatley/modules/talos-node/main.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pve01.wheatley.in/k8s-wheatley/modules/talos-node/main.tf b/pve01.wheatley.in/k8s-wheatley/modules/talos-node/main.tf index c312e77..e8a608c 100644 --- a/pve01.wheatley.in/k8s-wheatley/modules/talos-node/main.tf +++ b/pve01.wheatley.in/k8s-wheatley/modules/talos-node/main.tf @@ -83,4 +83,10 @@ resource "proxmox_virtual_environment_vm" "talos-node" { servers = ["9.9.9.9"] } } + + lifecycle { + ignore_changes = [ + clone, + ] + } }