fix: ignore cloud-init ssh drift on existing VMs
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 18s

This commit is contained in:
2026-02-28 18:46:14 +00:00
parent 2a5ecebd99
commit d190f64181

View File

@@ -64,6 +64,13 @@ resource "proxmox_vm_qemu" "control_planes" {
model = "virtio"
bridge = var.bridge
}
lifecycle {
ignore_changes = [
ciuser,
sshkeys,
]
}
}
@@ -115,4 +122,11 @@ resource "proxmox_vm_qemu" "workers" {
model = "virtio"
bridge = var.bridge
}
lifecycle {
ignore_changes = [
ciuser,
sshkeys,
]
}
}