github.com/graywolf-at-work-2/terraform-vendor@v1.4.5/internal/terraform/testdata/plan-ignore-changes-in-map/ignore-changes-in-map.tf (about) 1 2 resource "test_ignore_changes_map" "foo" { 3 tags = { 4 ignored = "from config" 5 other = "from config" 6 } 7 8 lifecycle { 9 ignore_changes = [ 10 tags["ignored"], 11 ] 12 } 13 }