github.phpd.cn/hashicorp/packer@v1.3.2/builder/azure/arm/template_factory_test.TestVirtualMachineDeployment09.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 "linuxConfiguration": { 127 "ssh": { 128 "publicKeys": [ 129 { 130 "keyData": "", 131 "path": "[variables('sshKeyPath')]" 132 } 133 ] 134 } 135 } 136 }, 137 "storageProfile": { 138 "imageReference": { 139 "offer": "--image-offer--", 140 "publisher": "--image-publisher--", 141 "sku": "--image-sku--", 142 "version": "--version--" 143 }, 144 "osDisk": { 145 "caching": "ReadWrite", 146 "createOption": "FromImage", 147 "managedDisk": { 148 "storageAccountType": "Standard_LRS" 149 }, 150 "name": "[parameters('osDiskName')]", 151 "osType": "Linux" 152 } 153 } 154 }, 155 "type": "Microsoft.Compute/virtualMachines" 156 } 157 ], 158 "variables": { 159 "addressPrefix": "10.0.0.0/16", 160 "apiVersion": "2017-03-30", 161 "location": "[resourceGroup().location]", 162 "managedDiskApiVersion": "2017-03-30", 163 "networkInterfacesApiVersion": "2017-04-01", 164 "publicIPAddressApiVersion": "2017-04-01", 165 "publicIPAddressType": "Dynamic", 166 "sshKeyPath": "[concat('/home/',parameters('adminUsername'),'/.ssh/authorized_keys')]", 167 "subnetAddressPrefix": "10.0.0.0/24", 168 "subnetName": "[parameters('subnetName')]", 169 "subnetRef": "[concat(variables('vnetID'),'/subnets/',variables('subnetName'))]", 170 "virtualNetworkName": "[parameters('virtualNetworkName')]", 171 "virtualNetworkResourceGroup": "[resourceGroup().name]", 172 "virtualNetworksApiVersion": "2017-04-01", 173 "vmStorageAccountContainerName": "images", 174 "vnetID": "[resourceId(variables('virtualNetworkResourceGroup'), 'Microsoft.Network/virtualNetworks', variables('virtualNetworkName'))]" 175 } 176 }