Azure 资源组 URL
Azure resource group URL
有没有URL直接去Azure资源组
我有一个显示了许多 RG 的仪表板。
所以如果我点击它,我想直接转到那个 RG。
我们可以使用像下面这样的东西吗 url 这需要 azure health
https://portal.azure.com/#blade/Microsoft_Azure_Health/AzureHealthBrowseBlade/resourceHealth
下面我试过了。但是没有用。
https://portal.azure.com/#blade/Microsoft_Azure_Resource_group/
在资源组 -> 属性中,您有“资源 ID”,这是您 RG 的路径。
所以你需要连接
https://portal.azure.com/#blade>/resource/<Resource ID>
对我来说它看起来像
https://portal.azure.com/#blade/resource/subscriptions/<subscription ID>/resourceGroups/<Group name>/overview
如果你想去一个特定的资源组,应该像下面这样,替换你的tenantname
、<subscription-id>
、<resource-groupname>
。
https://portal.azure.com/#@tenantname.onmicrosoft.com/resource/subscriptions/<subscription-id>/resourceGroups/<resource-groupname>/overview
如果要浏览所有的资源组,应该是
https://portal.azure.com/#blade/HubsExtension/BrowseResourceGroups
实际上,您只需要在 Azure 门户中导航到它,然后在浏览器中复制 URL,这就是您想要的。
更新:
为了让答案更清楚,还添加了另外两种转到特定资源组的方法。
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'
有没有URL直接去Azure资源组
我有一个显示了许多 RG 的仪表板。 所以如果我点击它,我想直接转到那个 RG。 我们可以使用像下面这样的东西吗 url 这需要 azure health
https://portal.azure.com/#blade/Microsoft_Azure_Health/AzureHealthBrowseBlade/resourceHealth
下面我试过了。但是没有用。
https://portal.azure.com/#blade/Microsoft_Azure_Resource_group/
在资源组 -> 属性中,您有“资源 ID”,这是您 RG 的路径。
所以你需要连接
https://portal.azure.com/#blade>/resource/<Resource ID>
对我来说它看起来像
https://portal.azure.com/#blade/resource/subscriptions/<subscription ID>/resourceGroups/<Group name>/overview
如果你想去一个特定的资源组,应该像下面这样,替换你的tenantname
、<subscription-id>
、<resource-groupname>
。
https://portal.azure.com/#@tenantname.onmicrosoft.com/resource/subscriptions/<subscription-id>/resourceGroups/<resource-groupname>/overview
如果要浏览所有的资源组,应该是
https://portal.azure.com/#blade/HubsExtension/BrowseResourceGroups
实际上,您只需要在 Azure 门户中导航到它,然后在浏览器中复制 URL,这就是您想要的。
更新:
为了让答案更清楚,还添加了另外两种转到特定资源组的方法。
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'