Skip to content

Commit 2b17ae5

Browse files
Merge pull request #236992 from mbrat2005/arg-casing-note
Resource Graph Casing Inconsistency Note
2 parents 9f939ca + 8381929 commit 2b17ae5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

articles/governance/resource-graph/concepts/explore-resources.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ Azure Resource Graph provides the ability to explore and discover your Azure res
1111
at scale. Engineered for fast responses, it's a great way to learn about your environment and also
1212
about the properties that exist on your Azure resources.
1313

14+
> [!NOTE]
15+
> Depending on the Resource Graph table, properties will either match the casing as shown in the Azure portal or be lowercased.
16+
> For example, the name of a resource group when querying the `resourceContainers` table will match the portal, but the
17+
> `resourceGroup` property of resources from the `resources` table will be lowercase. This may cause unexpected results and
18+
> can be accounted for in your queries using case-insensitive comparison operators such as `=~` instead of `==` and
19+
> converting properties to lowercase in joins with the `tolower()` function.
20+
1421
## Explore virtual machines
1522

1623
A common resource in Azure is a virtual machine. As a resource type, virtual machines have many

0 commit comments

Comments
 (0)