-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
If you use Azure tags and inherit them to resources, Terraform will, on every run, attempt to delete all tags—even those that are re-inherited. As a result, you never reach a state where no changes are necessary.
This can be resolved by the following snippet in your modules:
lifecycle {
ignore_changes = [
tags,
]
}is it possible to add that?
Kind regards
Metadata
Metadata
Assignees
Labels
No labels