Skip to content

Commit cb6703b

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

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-condition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ 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
| extend condition = tostring(properties.condition)
1717
| join kind = leftouter (
18-
AuthorizationResources
18+
authorizationresources
1919
| where type =~ "microsoft.authorization/roledefinitions"
2020
| extend RoleName = tostring(properties.roleName)
2121
| extend RoleId = tolower(id)

0 commit comments

Comments
 (0)