opentofu/terraform/test-fixtures/plan-taint-ignore-changes/main.tf
2016-10-27 08:44:59 -04:00

8 lines
98 B
HCL

resource "aws_instance" "foo" {
vars = "foo"
lifecycle {
ignore_changes = ["vars"]
}
}