手臂模板中的多个条件

时间:2017-09-06 09:08:51

标签: azure arm-template

有没有办法在手臂模板中实现这一目标?条件有多个部分?

{
      "type": "Microsoft.Web/sites/config",
      "name": "[variables('website_notProduction_config')]",
      "condition": "[not(parameters('is_Production')) and equals(parameters('is_Not_Development'), 'True')]",

1 个答案:

答案 0 :(得分:2)

是的,你需要使用and()函数:

"[and(not(something), equals(something))]"

参考: https://docs.microsoft.com/en-us/azure/azure-resource-manager/resource-group-template-functions-logical#and