2016-06-30 19:51:52 -04:00
|
|
|
{
|
|
|
|
"$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json",
|
|
|
|
"contentVersion": "1.0.0.0",
|
|
|
|
"parameters": {
|
|
|
|
"adminPassword": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"adminUsername": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"dnsNameForPublicIP": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"osDiskName": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"storageAccountBlobEndpoint": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"vmName": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"vmSize": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"resources": [
|
|
|
|
{
|
|
|
|
"apiVersion": "[variables('apiVersion')]",
|
|
|
|
"dependsOn": [],
|
|
|
|
"location": "[variables('location')]",
|
|
|
|
"name": "[variables('nicName')]",
|
|
|
|
"properties": {
|
|
|
|
"ipConfigurations": [
|
|
|
|
{
|
|
|
|
"name": "ipconfig",
|
|
|
|
"properties": {
|
|
|
|
"privateIPAllocationMethod": "Dynamic",
|
|
|
|
"subnet": {
|
|
|
|
"id": "[variables('subnetRef')]"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"type": "Microsoft.Network/networkInterfaces"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"apiVersion": "[variables('apiVersion')]",
|
|
|
|
"dependsOn": [
|
|
|
|
"[concat('Microsoft.Network/networkInterfaces/', variables('nicName'))]"
|
|
|
|
],
|
|
|
|
"location": "[variables('location')]",
|
|
|
|
"name": "[parameters('vmName')]",
|
|
|
|
"properties": {
|
|
|
|
"diagnosticsProfile": {
|
|
|
|
"bootDiagnostics": {
|
|
|
|
"enabled": false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"hardwareProfile": {
|
|
|
|
"vmSize": "[parameters('vmSize')]"
|
|
|
|
},
|
|
|
|
"networkProfile": {
|
|
|
|
"networkInterfaces": [
|
|
|
|
{
|
|
|
|
"id": "[resourceId('Microsoft.Network/networkInterfaces', variables('nicName'))]"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"osProfile": {
|
|
|
|
"adminPassword": "[parameters('adminPassword')]",
|
|
|
|
"adminUsername": "[parameters('adminUsername')]",
|
|
|
|
"computerName": "[parameters('vmName')]",
|
|
|
|
"linuxConfiguration": {
|
|
|
|
"ssh": {
|
|
|
|
"publicKeys": [
|
|
|
|
{
|
|
|
|
"keyData": "",
|
|
|
|
"path": "[variables('sshKeyPath')]"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"storageProfile": {
|
|
|
|
"osDisk": {
|
|
|
|
"caching": "ReadWrite",
|
|
|
|
"createOption": "FromImage",
|
|
|
|
"image": {
|
|
|
|
"uri": "https://localhost/custom.vhd"
|
|
|
|
},
|
2018-05-02 14:18:03 -04:00
|
|
|
"name": "[parameters('osDiskName')]",
|
2016-06-30 19:51:52 -04:00
|
|
|
"osType": "Linux",
|
|
|
|
"vhd": {
|
|
|
|
"uri": "[concat(parameters('storageAccountBlobEndpoint'),variables('vmStorageAccountContainerName'),'/', parameters('osDiskName'),'.vhd')]"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"type": "Microsoft.Compute/virtualMachines"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"variables": {
|
|
|
|
"addressPrefix": "10.0.0.0/16",
|
|
|
|
"apiVersion": "2015-06-15",
|
|
|
|
"location": "[resourceGroup().location]",
|
|
|
|
"publicIPAddressType": "Dynamic",
|
|
|
|
"sshKeyPath": "[concat('/home/',parameters('adminUsername'),'/.ssh/authorized_keys')]",
|
|
|
|
"subnetAddressPrefix": "10.0.0.0/24",
|
|
|
|
"subnetName": "ignore",
|
|
|
|
"subnetRef": "[concat(variables('vnetID'),'/subnets/',variables('subnetName'))]",
|
|
|
|
"virtualNetworkName": "ignore",
|
|
|
|
"virtualNetworkResourceGroup": "ignore",
|
|
|
|
"vmStorageAccountContainerName": "images",
|
|
|
|
"vnetID": "[resourceId(variables('virtualNetworkResourceGroup'), 'Microsoft.Network/virtualNetworks', variables('virtualNetworkName'))]"
|
|
|
|
}
|
|
|
|
}
|