We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbc91db commit 0eae138Copy full SHA for 0eae138
src/pentesting-cloud/azure-security/az-privilege-escalation/az-authorization-privesc.md
@@ -27,14 +27,16 @@ Create the file `role.json` with the following **content**:
27
28
```json
29
{
30
+ "roleName": "<name of the role>",
31
"Name": "<name of the role>",
32
"IsCustom": true,
33
"Description": "Custom role with elevated privileges",
34
"Actions": ["*"],
35
"NotActions": [],
36
"DataActions": ["*"],
37
"NotDataActions": [],
- "AssignableScopes": ["/subscriptions/<subscription-id>"]
38
+ "AssignableScopes": ["/subscriptions/<subscription-id>"],
39
+ "id": "/subscriptions/<subscription-id>/providers/Microsoft.Authorization/roleDefinitions/<role-id>",
40
}
41
```
42
0 commit comments