Skip to content

Instantly share code, notes, and snippets.

@thepaulmacca
Created January 13, 2022 14:53
Show Gist options
  • Save thepaulmacca/38e40023f904db9f01f2e2d6bc0f4dc3 to your computer and use it in GitHub Desktop.
Save thepaulmacca/38e40023f904db9f01f2e2d6bc0f4dc3 to your computer and use it in GitHub Desktop.
Azure RBAC Custom Role - Automation Account Contributor
{
"properties": {
"roleName": "Automation Account Contributor",
"description": "Allows access to manage Azure Automation and its resources",
"assignableScopes": [
"/subscriptions/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXX"
],
"permissions": [
{
"actions": [
"Microsoft.Authorization/*/read",
"Microsoft.Insights/alertRules/*",
"Microsoft.Insights/metrics/read",
"Microsoft.Insights/diagnosticSettings/*",
"Microsoft.Resources/deployments/*",
"Microsoft.Resources/subscriptions/resourceGroups/read",
"Microsoft.Automation/automationAccounts/*",
"Microsoft.Support/*"
],
"notActions": [],
"dataActions": [],
"notDataActions": []
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment