fix: avoid in-place VM updates on unreliable provider
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 1m58s

This commit is contained in:
2026-03-01 03:45:28 +00:00
parent 760d0e8b5b
commit 68c896d629

View File

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