Добавление набора доступности в создание шаблона виртуальной машины Azure

Я могу создать виртуальную машину Azure с конкретным виртуальным жестким диском из приведенного ниже шаблона, но как мне также добавить его в набор доступности. Я не могу сделать это после создания виртуальной машины, поэтому мне нужно сделать это здесь.

{
    "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
    "contentVersion": "1.0.0.0",
    "parameters": {
        "location": {
            "type": "string",
            "metadata": {
                "description": "Location to create the VM in"
            }
        },
        "osDiskVhdUri": {
            "type": "string",
            "metadata": {
                "description": "Uri of the existing VHD"
            }
        },
        "osType": {
            "type": "string",
            "allowedValues": [
                "Windows",
                "Linux"
            ],
            "metadata": {
                "description": "Type of OS on the existing vhd"
            }
        },
        "vmSize": {
            "type": "string",
            "defaultValue": "Standard_D2",
            "metadata": {
                "description": "Size of the VM"
            }
        },
        "vmName": {
            "type": "string",
            "metadata": {
                "description": "Name of the VM"
            }
        }
    },
    "variables": {
        "api-version": "2015-06-15",
        "addressPrefix": "10.0.0.0/16",
        "subnetName": "Subnet",
        "subnetPrefix": "10.0.0.0/24",
        "publicIPAddressName": "specializedVMPublicIP",
        "publicIPAddressType": "Dynamic",
        "virtualNetworkName": "specializedVMVNET",
        "vnetID": "[resourceId('Microsoft.Network/virtualNetworks',variables('virtualNetworkName'))]",
        "subnetRef": "[concat(variables('vnetID'),'/subnets/',variables('subnetName'))]",
        "nicName": "specializedVMNic"
    },
    "resources": [
        {
            "apiVersion": "[variables('api-version')]",
            "type": "Microsoft.Network/virtualNetworks",
            "name": "[variables('virtualNetworkName')]",
            "location": "[parameters('location')]",
            "properties": {
                "addressSpace": {
                    "addressPrefixes": [
                        "[variables('addressPrefix')]"
                    ]
                },
                "subnets": [
                    {
                        "name": "[variables('subnetName')]",
                        "properties": {
                            "addressPrefix": "[variables('subnetPrefix')]"
                        }
                    }
                ]
            }
        },
        {
            "apiVersion": "[variables('api-version')]",
            "type": "Microsoft.Network/networkInterfaces",
            "name": "[variables('nicName')]",
            "location": "[parameters('location')]",
            "dependsOn": [
                "[concat('Microsoft.Network/publicIPAddresses/', variables('publicIPAddressName'))]",
                "[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]"
            ],
            "properties": {
                "ipConfigurations": [
                    {
                        "name": "ipconfig1",
                        "properties": {
                            "privateIPAllocationMethod": "Dynamic",
                            "publicIPAddress": {
                                "id": "[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]"
                            },
                            "subnet": {
                                "id": "[variables('subnetRef')]"
                            }
                        }
                    }
                ]
            }
        },
        {
            "apiVersion": "[variables('api-version')]",
            "type": "Microsoft.Network/publicIPAddresses",
            "name": "[variables('publicIPAddressName')]",
            "location": "[parameters('location')]",
            "properties": {
                "publicIPAllocationMethod": "[variables('publicIPAddressType')]"
            }
        },
        {
            "apiVersion": "[variables('api-version')]",
            "type": "Microsoft.Compute/virtualMachines",
            "name": "[parameters('vmName')]",
            "location": "[parameters('location')]",
            "dependsOn": [
                "[concat('Microsoft.Network/networkInterfaces/', variables('nicName'))]"
            ],
            "properties": {
                "hardwareProfile": {
                    "vmSize": "[parameters('vmSize')]"
                },
                "storageProfile": {
                    "osDisk": {
                        "name": "[concat(parameters('vmName'),'-osDisk')]",
                        "osType": "[parameters('osType')]",
                        "caching": "ReadWrite",
                        "vhd": {
                            "uri": "[parameters('osDiskVhdUri')]"
                        },
                        "createOption": "Attach"
                    }
                },
                "networkProfile": {
                    "networkInterfaces": [
                        {
                            "id": "[resourceId('Microsoft.Network/networkInterfaces', variables('nicName'))]"
                        }
                    ]
                }
            }
        }
    ]
}

2 ответа

Решение

Лучший способ разобраться в подобных вещах - это просматривать шаблоны, пока не найдете то, что вам нужно!

Таким образом, в соответствии с этим шаблоном, вы создаете набор доступности, например

"resources": [
  {
    "type": "Microsoft.Compute/availabilitySets",
    "name": "availabilitySet1",
    "apiVersion": "2015-06-15",
    "location": "[parameters('location')]",
    "properties": {
      "platformFaultDomainCount": "3",
      "platformUpdateDomainCount": "20"
    }
  }
]

а затем (в соответствии с этим) вы используете это так

"apiVersion": "[variables('apiVersion')]",
"type": "Microsoft.Compute/virtualMachines",
"name": "[concat('myvm', copyIndex())]",
"location": "[variables('location')]",
"copy": {
  "name": "virtualMachineLoop",
  "count": "[parameters('numberOfInstances')]"
},
"dependsOn": [
  "[concat('Microsoft.Network/networkInterfaces/', 'nic', copyindex())]",
  "[concat('Microsoft.Storage/storageAccounts/', variables('storageAccountName'))]"
],
"properties": {
  "availabilitySet": {
    "id": "[resourceId('Microsoft.Compute/availabilitySets', variables('availabilitySetName'))]"
  },

Вам может понадобиться поиск поставщика ресурсов Microsoft.Compute/ AvailabilitySets, вот пример JSON из одного из моих шаблонов.

"resources": [
{
  "type": "Microsoft.Compute/availabilitySets",
  "name": "availabilitySet1",
  "apiVersion": "2015-06-15",
  "location": "[parameters('location')]",
  "properties": {
    "platformFaultDomainCount": "3",
    "platformUpdateDomainCount": "20"
  }
}
]

Затем вам нужно использовать availabilitySet собственность virtualMachines поставщик ресурсов для добавления виртуальных машин к набору доступности. Убедитесь, что вы используете dependsOn чтобы убедиться, что набор доступности создан до ВМ. Как пример, если вы ссылаетесь на это по имени:

"properties": {
        "hardwareProfile": { "vmSize": "Standard_A0" },
        "networkProfile": ...,
        "availabilitySet": { "id": "availabilitySet1" },
}