Given a company with multiple teams using EC2, what are some common or practical strategies for setting some TAG guidelines when instances or ami's are created so that resources can be more easily searched and filtered?
Asked
Active
Viewed 93 times
2
-
CloudFormation automatically tags all the resources created so it's a nice way to keep track of things. – Drew Khoury Nov 24 '13 at 10:42
1 Answers
0
Initially we tried making tags mandatory for everyone creating the VM to use tags in the following format.
name [name of the person creating the vm] project [project for the vm created for] team [team the VM belongs to] purpose [what is the VM used for] application [what application will be served on the vm]
This worked quite well. We improvised by creating a simple PHP form what would call EC2 API. The PHP form was validated so that all entries are valid, consistent and mandatory. Team and projects had list boxes.
Using simple fog.io EC2 api's, we would generate reports based on tags

Chida
- 2,491
- 1
- 17
- 29