From ca8b0900a36ccc250a12317a7e3938b1e6f197a3 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Sun, 18 Feb 2024 14:27:31 -0800 Subject: [PATCH] fix(tf): appease provider --- tf/proxmox_vms.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tf/proxmox_vms.tf b/tf/proxmox_vms.tf index b8c455ea..0b5574b0 100644 --- a/tf/proxmox_vms.tf +++ b/tf/proxmox_vms.tf @@ -178,7 +178,7 @@ resource "proxmox_virtual_environment_container" "aya" { started = false lifecycle { - ignore_changes = [started, description, initialization[0].dns, operating_system[0].template_file_id] + ignore_changes = [started, description, initialization[0].dns, initialization[0].ip_config, operating_system[0].template_file_id] } } @@ -240,6 +240,6 @@ resource "proxmox_virtual_environment_vm" "freeipa" { serial_device {} lifecycle { - ignore_changes = [started, operating_system[0], cdrom[0].enabled, cdrom[0].file_id] + ignore_changes = [started, description, operating_system[0], cdrom[0].enabled, cdrom[0].file_id] } }