We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To complement
#194
I believe there is a need to also support a rule that checks tag lifecycle ignores
For example: lifecycle { ignore_changes = [ tags["created_at"] ] }
If I am not mistaken these have to be manually managed at the moment per resource and cannot be done globally. hashicorp/terraform-provider-azurerm#13776
Something like
rule "azurerm_resource_lifecycle_ignore_tags" { enabled = true exclude = [] (list of resource types to exclude, optional) tags = ["Environment", "Department"] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To complement
#194
I believe there is a need to also support a rule that checks tag lifecycle ignores
For example:
lifecycle {
ignore_changes = [
tags["created_at"]
]
}
If I am not mistaken these have to be manually managed at the moment per resource and cannot be done globally.
hashicorp/terraform-provider-azurerm#13776
Something like
rule "azurerm_resource_lifecycle_ignore_tags" {
enabled = true
exclude = [] (list of resource types to exclude, optional)
tags = ["Environment", "Department"]
}
The text was updated successfully, but these errors were encountered: