We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb6703b commit 5eeed72Copy full SHA for 5eeed72
articles/role-based-access-control/includes/query/authorization-same-principal-scope.md
@@ -7,14 +7,14 @@ ms.author: rolyon
7
---
8
9
```kusto
10
-AuthorizationResources
+authorizationresources
11
| where type =~ "microsoft.authorization/roleassignments"
12
| where id startswith "/subscriptions"
13
| extend PrincipalId = tostring(properties.principalId)
14
| extend Scope = tolower(properties.scope)
15
| extend RoleDefinitionId = tolower(tostring(properties.roleDefinitionId))
16
| join kind = leftouter (
17
- AuthorizationResources
+ authorizationresources
18
| where type =~ "microsoft.authorization/roledefinitions"
19
| extend RoleName = tostring(properties.roleName)
20
| extend RoleId = tolower(id)
0 commit comments