You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While I can do this, its strange. Requiring ignore of a property as part of normal behaviour I think is poor form, or should I say poor... terra-form HA!
lifecycle {
ignore_changes = ["start"]
}
I would characterize this as a bug. If active is set with the absence of start, start should just not be checked at all. Maybe Im missing something here
The text was updated successfully, but these errors were encountered:
Hi, this should be a fixable bug. If start has a current value and the previous value is null, the resource can be considered unchanged. The direct way to accomplish this would be with a DiffSuppressFunc for that field.
Why does this behavior need to depend on active though?
You can make these changes here, btw, if you're inclined to submit a PR:
If the start attributes generates a diff from a value to nothing, it
means that the attribute was never set to being with. Let's ignore the
diff in that case.
Closes#507
Terraform v0.12.12
I want to mute a monitor indefinitely so I do this:
In never comes into state, every time I apply I see this:
While I can do this, its strange. Requiring ignore of a property as part of normal behaviour I think is poor form, or should I say poor... terra-form HA!
I would characterize this as a bug. If active is set with the absence of start, start should just not be checked at all. Maybe Im missing something here
The text was updated successfully, but these errors were encountered: