-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
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
aws_resource_missing_tags errors when tags are provided via default_tags mechanism #117
Comments
Yes, this rule doesn't currently support the default tags. On the other hand, this rule is just for manually solving the problem that should be realized with the default tags, and I think that this rule is no longer necessary. What do you think? |
We've just experienced this today. Our solution is to remove the rule from our Our use case of this rule was to ensure that the developer had correctly tagged all the resources that could support tags. This includes root resources as well as resources in modules. This resulted in passing a block of tags around and ensuring correct By moving the tags to the provider, our requirement has been met. All resources, regardless of how the tags are defined on the resource WILL get the tags defined in the provider. This reduces all the And so, with all of that, there's no further use case for us of this rule. It did involve a fair amount of work (several hundred resources all need to be stripped of their |
Aws have provided a new way of providing default tags through aws provider.
Right now those are ignored by
aws_resource_missing_tags
rule.Would it be for the rule not to error if the tags are present in the provider?
Thank you
The text was updated successfully, but these errors were encountered: