fix: ignore cloud-init ssh drift on existing VMs #52

Merged
micqdf merged 1 commits from stage into master 2026-02-28 18:51:57 +00:00
Showing only changes of commit d190f64181 - Show all commits

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