From 69408d9be8965d93cec434aa5699e44660e82faa Mon Sep 17 00:00:00 2001 From: Tamas Kiss Date: Mon, 28 Nov 2022 01:22:10 +0100 Subject: [PATCH] feat(lawndale-vm): ignore_changes to prevent perpetual diff --- lawndale-vm/compute.tf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lawndale-vm/compute.tf b/lawndale-vm/compute.tf index 325506c..c194574 100644 --- a/lawndale-vm/compute.tf +++ b/lawndale-vm/compute.tf @@ -79,6 +79,10 @@ resource "libvirt_domain" "this" { xslt = xml.value } } + + lifecycle { + ignore_changes = [nvram, disk[0].scsi] + } } resource "libvirt_cloudinit_disk" "this" {