首页 > 解决方案 > Azure 服务运行状况 ARM 模板如何选择所有位置

问题描述

我想为服务健康警报创建一个模板,以便它跨越所有地区的所有服务。

我的条件是

"condition": {
      "allOf": [
        {
          "field": "category",
          "equals": "ServiceHealth",
          "containsAny": null
        },
        {
          "field": "properties.impactedServices[*].ImpactedRegions[*].RegionName",
          "equals": null,
          "containsAny": [
          ]
           }
      ]
    },

我应该在“properties.impactedServices[ ].ImpactedRegions[ ].RegionName”下放什么,这样它才能勾选所有区域?

标签: azurearm-template

解决方案


推荐阅读