AWS Tagging Guidelines + Policies
Note: These guidelines are specific to the Mojaloop Community's AWS Environment for testing and validating Mojaloop installations, and are primarily for internal purposes. They may, however, be a useful reference to others wishing to implement similar tagging strategies in their own organizations.
To better manage and understand our AWS usage and spending, we are implementing the following tagging guidelines.
Contents
Proposed tags and their meanings
We propose the following 2 tag keys:
mojaloop/cost_center
mojaloop/owner
mojaloop/cost_center
mojaloop/cost_center
mojaloop/cost_center
is a breakdown of different resources in AWS by the workstream or project that is incurring the associated costs.
It loosely follows the format of <account>-<purpose>[-subpurpose]
, where account is something like oss
, tips
, or woccu
.
Note: It's likely that most of the resources will be under the
oss
"account", but I managed to find some older resources that fall under thetips
andwoccu
categories. We also want to plan for future types of resources that might be launched in the future.
Some potential values for mojaloop/cost_center
are:
oss-qa
: Open source QA work, such as the existing dev1 and dev2 environmentsoss-perf
: Open source performance work, such as the ongoing performance workstreamoss-perf-poc
: Performance/Architecture POC
We also reserve some special values:
unknown
: This resource was evaluated (perhaps manually, or perhaps by an automated tool), and no appropriatecost_center
could be determined.This will allow us to easily filter for the
mojaloop/cost_center:unknown
tags and produce a report
n/a
: This resource incurrs no cost, so we're not really worried about assigning acost_center
to itThis can be useful for mass tagging resources that are hard to figure out where the belong, such as EC2 Security Groups
mojaloop/owner
mojaloop/owner
mojaloop/owner
is a person who is responsible for the managing and shutdown of a given resource.
The goal of this tag is to prevent long running resources that everybody else thinks someone else knows about, but we no longer need. By applying this tag, we will be able to have a list of who to go to in order to ask questions about the resource.
The value can simply be a person's name, all lowercase:
lewis
miguel
etc.
Once again, we will reserve the following values:
unknown
: This resource was evaluated (perhaps manually, or perhaps by an automated tool), and no appropriatecost_center
could be determined.This will allow us to easily filter for the
mojaloop/owner:unknown
tags and see what resources are 'orphaned'
Manual Tagging
We can use the "Tag Editor" in the AWS console to search for untagged resources.
Log into the AWS Console
From the tag editor, select a Region (I typically use "All regions"), and Resource Type (I also typically use "All resource types")
Now select "Search Resources", and wait for the resources to appear
Once you have a list of the resources, you can select and edit tags for many resources at once!
You can also export a
.csv
file of resources found in your search
Automated Tagging
We currently automate tagging on the following
As we have a firmer grasp of our tagging guidelines, we need to introduce them into our tooling so that all of the grunt work of manual tagging.
At the moment, this will look like introducing tags into:
Rancher - which currently manages our Kubernetes clusters for both QA and Performance purposes
IAC - The upcoming IAC code that will eventually be running our dev environments
AWS Tagging Policies
As of August 3, 2020, we have started introducing AWS Tagging Policies to better enforce tags and monitor our resources (especially with respect to costs).
Viewing Tag Reports + Compliance
Log in to the AWS Console
"Resource Groups" > "Tag Editor"
On the left sidebar, select "Tag Policies"
From here you can see the tag policies "compliance report"
Editing Tag Policies
Note: This may require special admin priviledges to access these pages
Log in to the AWS Console
Select "username@mojaloop" in the top right > "My Organization"
Select "Policies" > "Tag Policies"
From here, you can view the current tag policies
In the sidebar, you can click "View details" > "Edit policy" to edit the policy
Attaching/Detaching Tag Policies
Go to the "My Organization" page
Select the relevant account > "Tag policies" in the sidebar
From here you can Attach + Detach tag policies
Last updated