mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-21 11:01:23 -05:00
Using markedPlannedNewVal caused many test failures with ignoreChanges, and I noted plannedNewVal itself is modified in the eval_diff. plannedNewVal is now marked closer to the change where it needs it. There is also a test fixture update to remove interpolation warnings.
10 lines
115 B
HCL
10 lines
115 B
HCL
variable "foo" {}
|
|
|
|
resource "aws_instance" "foo" {
|
|
ami = var.foo
|
|
|
|
lifecycle {
|
|
ignore_changes = [ami]
|
|
}
|
|
}
|