File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
articles/role-based-access-control/includes/query Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ ms.author: rolyon
7
7
---
8
8
9
9
``` kusto
10
- AuthorizationResources
10
+ authorizationresources
11
11
| where type =~ "microsoft.authorization/roleassignments"
12
12
| where id startswith "/subscriptions"
13
13
| extend PrincipalId = tostring(properties.principalId)
14
14
| extend Scope = tolower(properties.scope)
15
15
| extend RoleDefinitionId = tolower(tostring(properties.roleDefinitionId))
16
16
| extend condition = tostring(properties.condition)
17
17
| join kind = leftouter (
18
- AuthorizationResources
18
+ authorizationresources
19
19
| where type =~ "microsoft.authorization/roledefinitions"
20
20
| extend RoleName = tostring(properties.roleName)
21
21
| extend RoleId = tolower(id)
You can’t perform that action at this time.
0 commit comments