Files
opentf/terraform/testdata/plan-ignore-changes-with-flatmaps/main.tf
2019-06-30 10:16:15 +02:00

16 lines
193 B
HCL

resource "aws_instance" "foo" {
user_data = "x"
require_new = "yes"
set = [{
a = "1"
b = "2"
}]
lst = ["j", "k"]
lifecycle {
ignore_changes = ["require_new"]
}
}