Created
April 27, 2020 12:01
-
-
Save mikepfeiffer/176776a8758b4e2910554a5c33392c12 to your computer and use it in GitHub Desktop.
Custom Role Definition (Azure RBAC)
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
{ | |
"Name": "Virtual Machine Operator (Custom)", | |
"Id": null, | |
"IsCustom": true, | |
"Description": "Allows to start and stop (deallocate) Azure VMs", | |
"Actions": [ | |
"Microsoft.Compute/*/read", | |
"Microsoft.Compute/virtualMachines/deallocate/action", | |
"Microsoft.Compute/virtualMachines/start/action" | |
], | |
"NotActions": [ | |
], | |
"AssignableScopes": [ | |
"/subscriptions/SUBSCRIPTION_ID" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment