Merge pull request 'fix: avoid in-place VM updates on unreliable provider' (#65) from stage into master
Some checks failed
Terraform Apply / Terraform Apply (push) Failing after 55m11s

Reviewed-on: #65
This commit was merged in pull request #65.
This commit is contained in:
2026-03-01 03:58:10 +00:00

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