Created
January 13, 2022 14:53
-
-
Save thepaulmacca/38e40023f904db9f01f2e2d6bc0f4dc3 to your computer and use it in GitHub Desktop.
Azure RBAC Custom Role - Automation Account Contributor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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