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 86fc0e0 commit a7dfe05Copy full SHA for a7dfe05
articles/governance/includes/resource-graph/query/authorization-same-role-scope.md
@@ -7,12 +7,12 @@ ms.author: rolyon
7
---
8
9
```kusto
10
-AuthorizationResources
+authorizationresources
11
| where type =~ "microsoft.authorization/roleassignments"
12
| where id startswith "/subscriptions"
13
| extend RoleId = tolower(tostring(properties.roleDefinitionId))
14
| join kind = leftouter (
15
- AuthorizationResources
+ authorizationresources
16
| where type =~ "microsoft.authorization/roledefinitions"
17
| extend RoleDefinitionName = tostring(properties.roleName)
18
| extend RoleId = tolower(id)
0 commit comments