Skip to content

Instantly share code, notes, and snippets.

@rdtechie
Created August 15, 2018 15:08
Show Gist options
  • Save rdtechie/55b919c5e5c5743723bb00dfc1075215 to your computer and use it in GitHub Desktop.
Save rdtechie/55b919c5e5c5743723bb00dfc1075215 to your computer and use it in GitHub Desktop.
{
"properties": {
"displayName": "Enforces a required tag and its value.",
"description": "Enforces a required tag and its value on resources that supports tagging.",
"mode": "indexed"
},
"policyRule": {
"if": {
"allOf": [
{
"not": {
"field": "tags",
"containsKey": "Application Name"
}
},
{
"not": {
"field": "tags",
"containsKey": "Business Unit Name"
}
},
{
"not": {
"field": "tags",
"containsKey": "Application ID"
}
},
{
"not": {
"field": "tags",
"containsKey": "Environment"
}
}
]
},
"then": {
"effect": "deny"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment