opentofu/terraform/testdata/plan-ignore-changes-in-map/ignore-changes-in-map.tf
2019-06-30 10:16:15 +02:00

14 lines
188 B
HCL

resource "test_ignore_changes_map" "foo" {
tags = {
ignored = "from config"
other = "from config"
}
lifecycle {
ignore_changes = [
tags["ignored"],
]
}
}