Azure resource group URL

1.4k views Asked by At

Is there any URL to directly go to Azure resource group.

I am having a dashboard which has many RGs displayed there. so I want to go to that RG directly if I click on it. can we use something like below url which takes to azure health

https://portal.azure.com/#blade/Microsoft_Azure_Health/AzureHealthBrowseBlade/resourceHealth

I have tried below. But is not working.

https://portal.azure.com/#blade/Microsoft_Azure_Resource_group/

3

There are 3 answers

0
Ac9293 On BEST ANSWER

This is the answer which will take you to RG 'https://portal.azure.com/#@TENANTNAME/resource/subscriptions/(subscriptionID)/resourceGroups/(RGName)/overview'

0
Danila Zharenkov On

In Resource Group -> Properties you've got "Resource ID", which is the path to you RG.

So you need to concat

https://portal.azure.com/#blade>/resource/<Resource ID>

For me it looks like

https://portal.azure.com/#blade/resource/subscriptions/<subscription ID>/resourceGroups/<Group name>/overview
5
Joy Wang On

If you want to go to a specifc resource group, it should be like below, replace the tenantname, <subscription-id>, <resource-groupname> of yours.

https://portal.azure.com/#@tenantname.onmicrosoft.com/resource/subscriptions/<subscription-id>/resourceGroups/<resource-groupname>/overview

If you want to browse all the resource groups, it should be

https://portal.azure.com/#blade/HubsExtension/BrowseResourceGroups

Actually, you just need to navigate to it in the azure portal, then copy the URL in the browser, that is what you want.

Update:

To make the answer more clear, also add two other ways to go to a specifc resource group.

https://portal.azure.com/#@<customdomain of your AAD tenant>/resource/subscriptions/<subscription-id>/resourceGroups/<resource-groupname>/overview

https://portal.azure.com/#@<tenant-id>/resource/subscriptions/<subscription-id>/resourceGroups/<resource-groupname>/overview