What does “hidden-link:” mean in Azure Resource Manager Tags

有些话、适合烂在心里 提交于 2019-12-10 12:38:49

问题


I exported an Azure Resource Manager JSON template from my resource group on Azure. I see a bunch of tags in the generated file like:

"tags": {
    "hidden-link:/subscriptions/[my-subscription-id-here]/resourceGroups/[my-resource-group]/providers/Microsoft.Sql/servers/[my-database-server-name]/databases/[my-database-name]": "Resource"
},

The only documentation I can find on it is from Using tags to organize your Azure resources, which says:

You may see tags that start with "hidden-" and "link:". These are internal tags, which you should ignore and avoid changing.

The problem is that I'm going to be deploying this resource template to a completely different subscription than the one whose ID is hard-coded into the tag. Any meaning that the hard-coded subscription id has in this tag will be lost. Can I safely remove this tag? What does it mean, and how is it used once deployed?


回答1:


These tags are used to associate related resources. They are used to populate the Linked Resources section. Removing the tags will prevent resources from displaying as Linked Resources but will not impact any functionality.




回答2:


Just to help stop anyone else from wasting a couple of hours in frustration:

Don't remove these tags from your generated ARM template for web tests in Application Insights.

I was wondering if I really needed these tags since they were very specific to the resource that I used to create the template from. Reading this answer I figured that it wasn't necessary so I removed them and promptly forgot about removing them.

The deployment then started failing with the very descriptive error:

{
 "code": "BadRequest",
 "message": "{
   "code": "BadRequest",
   "message": "Bad Request\",
   "innererror": 
    {
       "diagnosticcontext": "d657bd3b-6b5f-4b24-8963-c2e9ac76a65b\",
       "time": "2019-02-05T13:37:23.6473698Z"
    }
}

Putting the "hidden-links" back in seems to fix the issue.

An alternative that makes the script a bit more reusable is specifying the "hidden-link" as follows:

"tags": { "[concat('hidden-link:', resourceId('Microsoft.Insights/components', parameters('appInsightsName')))]": "Resource" }

Where applicationInsightName is a variable containing the name of the ApplicationInsight instance




回答3:


Azure Resource Manager (ARM) tag is optional to an Azure Resource or an Azure Resource Group.

You can safely remove any tag without affecting your ARM deployment.



来源:https://stackoverflow.com/questions/38578122/what-does-hidden-link-mean-in-azure-resource-manager-tags

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!