Summary: Use the Azure Resource Manager cmdlets to show resources that are assigned under a resource group.
I looked at the console for Azure Resource Manager and can see all the resources for a particular resource group. Is there a way to see that by using PowerShell?
There sure is! Just use the Get-AzureRMResource cmdlet and filter on the ResourceGroupName property. Here’s an example:
Get-AzureRmResource | where { $_.ResourceGroupName -eq 'HSG-AzureRG' } | Format-Table