From f002552e6e7ddeb150e4e8ce70fc3b050b870011 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 28 Jan 2026 15:17:48 -0700 Subject: [PATCH] lifecycle block change --- terraform/main.tf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/terraform/main.tf b/terraform/main.tf index beb27ff..9bf4b20 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -65,8 +65,9 @@ resource "proxmox_virtual_environment_container" "cattle" { lifecycle { ignore_changes = [ - operating_system[0].template_file_id, - initialization[0].user_account[0].password, + unprivileged, # Stops the rebuild for the privilege flag + initialization[0].user_account, # Stops the rebuild for the password + operating_system[0].template_file_id # Stops rebuild for the image name ] } } \ No newline at end of file