Rename file and make not case sensitive

This commit is contained in:
Charmaine Chan
2024-11-18 15:28:56 -08:00
parent d2f0ddac33
commit 3b4e3920f9
@@ -30,9 +30,9 @@ if ([string]::IsNullOrEmpty($resourceGroupName) -or [string]::IsNullOrEmpty($sub
$query = @"
Resources
| where type == 'microsoft.azurearcdata/sqlserverinstances'
| where resourceGroup == '$resourceGroupName'
| where subscriptionId == '$subscriptionId'
| where type =~ 'microsoft.azurearcdata/sqlserverinstances'
| where resourceGroup =~ '$resourceGroupName'
| where subscriptionId =~ '$subscriptionId'
| project name, resourceGroup
"@