1

以下是我的输入参数文件(parameter.json)

    {
    "VNetSettings":{
    "value":{
        "name":"VNet2",
        "addressPrefixes":"10.0.0.0/16",
        "subnets":[
            {
                "name": "sub1",
                "addressPrefix": "10.0.1.0/24"
            },
            {
                "name":"sub2",
                "addressPrefix":"10.0.2.0/24"
            }
        ]
    }
  }
}

以下是我应该部署子网的手臂模板。(deploy.json)

   {
"contentversion":"1.0.0.0",
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"parameters":{
        "VNetSettings":{"type":"object"},
"noofsubnets":
        {
            "type":"int"
        },
"newOrExisting":
    {
        "type":"string",
        "allowedvalues":
            [
                "new",
                "existing"
            ]
    }
    },
"resources":
[{
  "condition":"[equals(parameters('newOrExisting'),'new')]",
  "type": "Microsoft.Network/virtualNetworks",
  "mode":"Incremental",
  "apiVersion": "2015-06-15",
  "name":"[parameters('VNetSettings').name]",
  "location":"[resourceGroup().location]",
  "properties":
  {
    "addressSpace":{
        "addressPrefixes":["[parameters('VNetSettings').addressPrefixes]"]
  },
    "copy":
       [{
         "name":"subnets",
         "count":"[parameters('noofsubnets')]",
         "input": 
             {
              "name": "[parameters('VNetSettings').subnets[copyIndex('subnets')].name]",
              "properties":
                 {
                   "addressPrefix": "[parameters('VNetSettings').subnets[copyIndex('subnets')].addressPrefix]"
                 }
             }
        }]

       }
  }]
}

模板应该做的是将这两个子网(sub1 和 sub2)添加到 Vnet(如果已有子网的话)。但是它正在做的是用输入文件中存在的这两个子网替换现有子网. 模式:增量应该这样做,但我不确定我是否将其放置在正确的位置。我正在使用以下 powershell 命令部署此模板:

    New-AzureRmResourceGroupDeployment -Name testing -ResourceGroupName rgname -TemplateFile C:\Test\deploy.json -TemplateParameterFile C:\Test\parameterfile.json
4

1 回答 1

3

这是预期的行为。您应该阅读“幂等性”。您需要做的是创建一个子网资源,这样您就可以解决它。

{
    "apiVersion": "2016-03-30",
    "name": "vnetName\subnetName",
    "location": "[resourceGroup().location]]",
    "type": "Microsoft.Network/virtualNetworks/subnets",
    "properties": {
        "addressPrefix": "xx.x.x.xx"
    }
}

vnetName 必须是您要在其中创建资源的 vnet。

于 2018-03-15T05:21:32.170 回答