Created
November 17, 2024 19:00
-
-
Save colbyford/2ca847a729fed6f17beafce33290864d to your computer and use it in GitHub Desktop.
Azure role that allows the deletion of resource groups within the subscription.
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": "Resource Group Deleter", | |
"description": "Allows the deletion of resource groups within the subscription.", | |
"assignableScopes": [ | |
"/subscriptions/<SUBSCRIPTION ID>" | |
], | |
"permissions": [ | |
{ | |
"actions": [ | |
"Microsoft.Resources/subscriptions/resourceGroups/delete" | |
], | |
"notActions": [], | |
"dataActions": [], | |
"notDataActions": [] | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment