Skip to content

Commit 5eeed72

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/role-based-access-control/includes/query/authorization-same-principal-scope.md

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

99
```kusto
10-
AuthorizationResources
10+
authorizationresources
1111
| where type =~ "microsoft.authorization/roleassignments"
1212
| where id startswith "/subscriptions"
1313
| extend PrincipalId = tostring(properties.principalId)
1414
| extend Scope = tolower(properties.scope)
1515
| extend RoleDefinitionId = tolower(tostring(properties.roleDefinitionId))
1616
| join kind = leftouter (
17-
AuthorizationResources
17+
authorizationresources
1818
| where type =~ "microsoft.authorization/roledefinitions"
1919
| extend RoleName = tostring(properties.roleName)
2020
| extend RoleId = tolower(id)

0 commit comments

Comments
 (0)