fix: avoid in-place VM updates on unreliable provider #65

Merged
micqdf merged 2 commits from stage into master 2026-03-01 03:58:11 +00:00
Showing only changes of commit 68c896d629 - Show all commits

View File

@@ -66,14 +66,7 @@ resource "proxmox_vm_qemu" "control_planes" {
} }
lifecycle { lifecycle {
ignore_changes = [ ignore_changes = all
boot,
bootdisk,
scsihw,
ipconfig0,
ciuser,
sshkeys,
]
} }
} }
@@ -128,13 +121,6 @@ resource "proxmox_vm_qemu" "workers" {
} }
lifecycle { lifecycle {
ignore_changes = [ ignore_changes = all
boot,
bootdisk,
scsihw,
ipconfig0,
ciuser,
sshkeys,
]
} }
} }