繁体   English   中英

ARM 文件中的标签在 Azure 门户中不可见

[英]Tags in ARM file not visible in Azure portal

我的部署 yml 文件中提到了多个标签,但它们在 Azure 门户应用程序服务中不可见。 以下标签均对 Azure 门户不可见。 只能找到成本中心标记。

 "resources": [
    {
          "apiVersion": "2016-08-01",
          "type": "Microsoft.Web/sites/slots",
          "comments": "",
          "location": "[resourceGroup().location]",
          "dependsOn": [
           "[variables('webAppDeployment')]"
          ],
          "kind": "app",
          "name": "[concat(parameters('siteName'),'/','staging')]",
          "properties": {
            "serverFarmId": "[parameters('appServicePlanResourceId')]"
          },
          "tags": {
            "displayName": "TEST",
            "Module": "MM",
            "SubModule": "ABD"
          }
]

为了在我们的本地环境中对此进行测试,我们创建了一个新的 ARM 模板,该模板将创建一个应用程序服务计划、web 应用程序和该 web 应用程序的暂存槽,其中包含上面共享的标签列表。

在测试模板时,部署成功并且我们能够在门户中看到 webapp 插槽的标签。

下面是样本output供参考:

在此处输入图像描述

作为参考,这里是我们创建的用于测试的示例 ARM 模板:

{
    "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "web-appname": {
            "type": "string"
        },
        "appservicename": {
            "type": "string"
        }
    },
    "functions": [],
    "variables": {},
    "resources": [
 {
     "name": "[parameters('appservicename')]",
     "type": "Microsoft.Web/serverfarms",
     "apiVersion": "2020-12-01",
     "location": "[resourceGroup().location]",
     "sku": {
         "name": "S1"
     },
     "properties": {
         "name": "[parameters('appservicename')]"
     }
 },
{
    "name": "[parameters('web-appname')]",
    "type": "Microsoft.Web/sites",
    "apiVersion": "2020-12-01",
    "location": "[resourceGroup().location]",
    "dependsOn": [
        "[resourceId('Microsoft.Web/serverfarms',parameters('appservicename'))]"
    ],
    "properties": {
        "name": "[parameters('web-appname')]",
        "serverFarmId": "[resourceId('Microsoft.Web/serverfarms',parameters('appservicename'))]"
    }
},
{
    "name":"[concat(parameters('web-appname'),'/','stagging')]",
    "type": "Microsoft.Web/sites/slots",
    "apiVersion": "2021-02-01",
    "location": "[resourceGroup().location]",
    "dependsOn": [
        "[resourceId('Microsoft.Web/sites', parameters('web-appname'))]"
    ],
    "tags": {
        "displayName": "TEST",
            "Module": "MM",
            "SubModule": "ABD",
            "Createdfor": "repro",
            "depart":"test"
    },
    "properties": {
        "httpsOnly": true
    }
}
    ],
    "outputs": {}
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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