简体   繁体   中英

Azure resource group URL

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/

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

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

这是将带您到 RG 'https://portal.azure.com/#@TENANTNAME/resource/subscriptions/(subscriptionID)/resourceGroups/(RGName)/overview'的答案

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM