Compare commits

...

3 Commits

Author SHA1 Message Date
364d407fb7 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
2026-03-01 03:58:10 +00:00
c8771b897c Merge branch 'master' into stage
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 15s
2026-03-01 03:57:40 +00:00
68c896d629 fix: avoid in-place VM updates on unreliable provider
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 1m58s
2026-03-01 03:45:28 +00:00

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