Skip to content

Commit fa8f289

Browse files
authored
fix: the name 'AuthorizationResources' does not refer to any known table, tabular variable or function.
1 parent 5eeed72 commit fa8f289

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/role-based-access-control/includes/query/authorization-unused-custom-roles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ ms.author: rolyon
77
---
88

99
```kusto
10-
AuthorizationResources
10+
authorizationresources
1111
| where type =~ "microsoft.authorization/roledefinitions"
1212
| where tolower(properties.type) == "customrole"
1313
| extend rdId = tolower(id)
1414
| extend Scope = tolower(properties.assignableScopes)
1515
| join kind = leftouter (
16-
AuthorizationResources
16+
authorizationresources
1717
| where type =~ "microsoft.authorization/roleassignments"
1818
| extend RoleId = tolower(tostring(properties.roleDefinitionId))
1919
| summarize RoleAssignmentCount = count() by RoleId

0 commit comments

Comments
 (0)