-
Notifications
You must be signed in to change notification settings - Fork 43
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
Tagged tables and other resources #47
Comments
Tags are becoming more common and widely used. We have legacy support for dynamo tables and SQS queues and generic support for everything else. Ideally we want the generic config to support matching on tags for all supported resource types. We may want to match combinations of tags, e.g |
Suggest we add two properties to Annoyingly the dynamo api (at least) only has |
Having looked at this a while back, the main challenge appears to be that (last time I looked) not all AWS services provide a method to retrieve tags for multiple resources at a time. So, for example, you would end up requesting individual resources for every dynamo table in the account, whereas now we can list and filter dynamo tables in one call. |
The approach we discussed was for The type that is loaded from config, |
We are going to be using tags more and more, in order to mark dynamo tables as belonging to a particular feature. Watchman should be able to using this grouping metadata to apply rules to dynamo tables, and to other resources that support tags.
The text was updated successfully, but these errors were encountered: