fix: ignore cloud-init ssh drift on existing VMs
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 18s
All checks were successful
Terraform Plan / Terraform Plan (push) Successful in 18s
This commit is contained in:
@@ -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,
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user