mirror of https://github.com/hashicorp/terraform
Merge pull request #29849 from hashicorp/kmoe/ignore_changes-override
configs: fix ignore_changes config override bugpull/29856/head
commit
ba4b6652fa
@ -0,0 +1,3 @@
|
||||
resource "test_instance" "foo" {
|
||||
foo = "bar"
|
||||
}
|
||||
@ -0,0 +1,6 @@
|
||||
resource "test_instance" "foo" {
|
||||
foo = "bar"
|
||||
lifecycle {
|
||||
ignore_changes = all
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue