From 91d60b2b2f8c2a73ab9e8639815b2bb60e91418a Mon Sep 17 00:00:00 2001 From: Luke Fritz Date: Sun, 29 Jan 2023 15:17:32 -0600 Subject: [PATCH] Use current, unquoted references to lifecycle properties (fix) --- main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.tf b/main.tf index d91ce61..9b2ee67 100644 --- a/main.tf +++ b/main.tf @@ -23,8 +23,8 @@ resource "azuread_group" "group" { ignore_changes = [ // The following fields only have an effect on initial provisioning of the group. // When importing existing resources, these would trigger a replacement of the imported resource. - "behaviors", - "provisioning_options", + behaviors, + provisioning_options, ] }