github.phpd.cn/hashicorp/packer@v1.3.2/builder/azure/arm/template_factory_test.TestVirtualMachineDeployment07.approved.json (about) 1 { 2 "$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json", 3 "contentVersion": "1.0.0.0", 4 "parameters": { 5 "adminPassword": { 6 "type": "string" 7 }, 8 "adminUsername": { 9 "type": "string" 10 }, 11 "dnsNameForPublicIP": { 12 "type": "string" 13 }, 14 "nicName": { 15 "type": "string" 16 }, 17 "osDiskName": { 18 "type": "string" 19 }, 20 "publicIPAddressName": { 21 "type": "string" 22 }, 23 "storageAccountBlobEndpoint": { 24 "type": "string" 25 }, 26 "subnetName": { 27 "type": "string" 28 }, 29 "virtualNetworkName": { 30 "type": "string" 31 }, 32 "vmName": { 33 "type": "string" 34 }, 35 "vmSize": { 36 "type": "string" 37 } 38 }, 39 "resources": [ 40 { 41 "apiVersion": "[variables('publicIPAddressApiVersion')]", 42 "location": "[variables('location')]", 43 "name": "[parameters('publicIPAddressName')]", 44 "properties": { 45 "dnsSettings": { 46 "domainNameLabel": "[parameters('dnsNameForPublicIP')]" 47 }, 48 "publicIPAllocationMethod": "[variables('publicIPAddressType')]" 49 }, 50 "type": "Microsoft.Network/publicIPAddresses" 51 }, 52 { 53 "apiVersion": "[variables('virtualNetworksApiVersion')]", 54 "location": "[variables('location')]", 55 "name": "[variables('virtualNetworkName')]", 56 "properties": { 57 "addressSpace": { 58 "addressPrefixes": [ 59 "[variables('addressPrefix')]" 60 ] 61 }, 62 "subnets": [ 63 { 64 "name": "[variables('subnetName')]", 65 "properties": { 66 "addressPrefix": "[variables('subnetAddressPrefix')]" 67 } 68 } 69 ] 70 }, 71 "type": "Microsoft.Network/virtualNetworks" 72 }, 73 { 74 "apiVersion": "[variables('networkInterfacesApiVersion')]", 75 "dependsOn": [ 76 "[concat('Microsoft.Network/publicIPAddresses/', parameters('publicIPAddressName'))]", 77 "[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]" 78 ], 79 "location": "[variables('location')]", 80 "name": "[parameters('nicName')]", 81 "properties": { 82 "ipConfigurations": [ 83 { 84 "name": "ipconfig", 85 "properties": { 86 "privateIPAllocationMethod": "Dynamic", 87 "publicIPAddress": { 88 "id": "[resourceId('Microsoft.Network/publicIPAddresses', parameters('publicIPAddressName'))]" 89 }, 90 "subnet": { 91 "id": "[variables('subnetRef')]" 92 } 93 } 94 } 95 ] 96 }, 97 "type": "Microsoft.Network/networkInterfaces" 98 }, 99 { 100 "apiVersion": "[variables('apiVersion')]", 101 "dependsOn": [ 102 "[concat('Microsoft.Network/networkInterfaces/', parameters('nicName'))]" 103 ], 104 "location": "[variables('location')]", 105 "name": "[parameters('vmName')]", 106 "properties": { 107 "diagnosticsProfile": { 108 "bootDiagnostics": { 109 "enabled": false 110 } 111 }, 112 "hardwareProfile": { 113 "vmSize": "[parameters('vmSize')]" 114 }, 115 "networkProfile": { 116 "networkInterfaces": [ 117 { 118 "id": "[resourceId('Microsoft.Network/networkInterfaces', parameters('nicName'))]" 119 } 120 ] 121 }, 122 "osProfile": { 123 "adminPassword": "[parameters('adminPassword')]", 124 "adminUsername": "[parameters('adminUsername')]", 125 "computerName": "[parameters('vmName')]", 126 "customData": "I2Nsb3VkLWNvbmZpZwpncm93cGFydDoKICBtb2RlOiBvZmYK", 127 "linuxConfiguration": { 128 "ssh": { 129 "publicKeys": [ 130 { 131 "keyData": "", 132 "path": "[variables('sshKeyPath')]" 133 } 134 ] 135 } 136 } 137 }, 138 "storageProfile": { 139 "osDisk": { 140 "caching": "ReadWrite", 141 "createOption": "FromImage", 142 "image": { 143 "uri": "https://localhost/custom.vhd" 144 }, 145 "name": "[parameters('osDiskName')]", 146 "osType": "Linux", 147 "vhd": { 148 "uri": "[concat(parameters('storageAccountBlobEndpoint'),variables('vmStorageAccountContainerName'),'/', parameters('osDiskName'),'.vhd')]" 149 } 150 } 151 } 152 }, 153 "type": "Microsoft.Compute/virtualMachines" 154 } 155 ], 156 "variables": { 157 "addressPrefix": "10.0.0.0/16", 158 "apiVersion": "2017-03-30", 159 "location": "[resourceGroup().location]", 160 "managedDiskApiVersion": "2017-03-30", 161 "networkInterfacesApiVersion": "2017-04-01", 162 "publicIPAddressApiVersion": "2017-04-01", 163 "publicIPAddressType": "Dynamic", 164 "sshKeyPath": "[concat('/home/',parameters('adminUsername'),'/.ssh/authorized_keys')]", 165 "subnetAddressPrefix": "10.0.0.0/24", 166 "subnetName": "[parameters('subnetName')]", 167 "subnetRef": "[concat(variables('vnetID'),'/subnets/',variables('subnetName'))]", 168 "virtualNetworkName": "[parameters('virtualNetworkName')]", 169 "virtualNetworkResourceGroup": "[resourceGroup().name]", 170 "virtualNetworksApiVersion": "2017-04-01", 171 "vmStorageAccountContainerName": "images", 172 "vnetID": "[resourceId(variables('virtualNetworkResourceGroup'), 'Microsoft.Network/virtualNetworks', variables('virtualNetworkName'))]" 173 } 174 }