From 68c896d629fc0ae9ff5183b776ed1c4db354d99f Mon Sep 17 00:00:00 2001 From: MichaelFisher1997 Date: Sun, 1 Mar 2026 03:45:28 +0000 Subject: [PATCH] fix: avoid in-place VM updates on unreliable provider --- terraform/main.tf | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/terraform/main.tf b/terraform/main.tf index d86c140..9a68fcf 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -66,14 +66,7 @@ resource "proxmox_vm_qemu" "control_planes" { } lifecycle { - ignore_changes = [ - boot, - bootdisk, - scsihw, - ipconfig0, - ciuser, - sshkeys, - ] + ignore_changes = all } } @@ -128,13 +121,6 @@ resource "proxmox_vm_qemu" "workers" { } lifecycle { - ignore_changes = [ - boot, - bootdisk, - scsihw, - ipconfig0, - ciuser, - sshkeys, - ] + ignore_changes = all } }