I am trying to check if a ResourceGroup exists or not, so I thought that the following code should return true or false, but does not output anything.
$RSGtest = Find-AzureRmResource | Format-List ResourceGroupName | get-unique $RSGtest -Match "$myResourceGroupName"
Why am I not getting any output?
powershell azure-resource-manager azure-powershell
Peter Pavelka
source share