This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"vmName": { | |
"type": "string", | |
"metadata": { | |
"description": "Name of the VM" | |
} | |
}, | |
"osType": { | |
"type": "string", | |
"allowedValues": [ | |
"Windows", | |
"Linux" | |
], | |
"metadata": { | |
"description": "Type of OS on the existing vhd" | |
} | |
}, | |
"osDiskVhdUri": { | |
"type": "string", | |
"metadata": { | |
"description": "Uri of the existing VHD in ARM standard or premium storage in the same subscription" | |
} | |
}, | |
"vmSize": { | |
"type": "string", | |
"metadata": { | |
"description": "Size of the VM" | |
} | |
}, | |
"existingVirtualNetworkName": { | |
"type": "string", | |
"metadata": { | |
"description": "Name of the existing VNET" | |
} | |
}, | |
"existingVirtualNetworkResourceGroup": { | |
"type": "string", | |
"metadata": { | |
"description": "Name of the existing VNET resource group" | |
} | |
}, | |
"subnetName": { | |
"type": "string", | |
"metadata": { | |
"description": "Name of the subnet in the virtual network you want to use" | |
} | |
}, | |
"dnsNameForPublicIP": { | |
"type": "string", | |
"metadata": { | |
"description": "Unique DNS Name for the Public IP used to access the Virtual Machine." | |
} | |
} | |
}, | |
"variables": { | |
"OSDiskName": "[concat(parameters('vmName'), uniqueString('disk'))]", | |
"diagStorageAccountName": "[concat(uniquestring(resourceGroup().id), 'specvm')]", | |
"networkSecurityGroupName": "[concat('NSG', uniqueString(parameters('vmName')))]", | |
"api-version": "2015-06-15", | |
"publicIPAddressType": "Dynamic", | |
"vnetID": "[resourceId(parameters('existingVirtualNetworkResourceGroup'), 'Microsoft.Network/virtualNetworks', parameters('existingVirtualNetworkName'))]", | |
"subnetRef": "[concat(variables('vnetID'),'/subnets/', parameters('subnetName'))]", | |
"nicName": "[parameters('vmName')]", | |
"publicIPAddressName": "[parameters('vmName')]" | |
}, | |
"resources": [ | |
{ | |
"apiVersion": "[variables('api-version')]", | |
"type": "Microsoft.Network/publicIPAddresses", | |
"name": "[variables('publicIPAddressName')]", | |
"location": "[resourceGroup().location]", | |
"tags": { | |
"displayName": "PublicIPAddress" | |
}, | |
"properties": { | |
"publicIPAllocationMethod": "[variables('publicIPAddressType')]", | |
"dnsSettings": { | |
"domainNameLabel": "[parameters('dnsNameForPublicIP')]" | |
} | |
} | |
}, | |
{ | |
"apiVersion": "[variables('api-version')]", | |
"type": "Microsoft.Network/networkInterfaces", | |
"name": "[variables('nicName')]", | |
"location": "[resourceGroup().location]", | |
"dependsOn": [ | |
"[concat('Microsoft.Network/publicIPAddresses/', variables('publicIPAddressName'))]", | |
"[concat('Microsoft.Network/networkSecurityGroups/', variables('networkSecurityGroupName'))]" | |
], | |
"tags": { | |
"displayName": "NetworkInterface" | |
}, | |
"properties": { | |
"ipConfigurations": [ | |
{ | |
"name": "ipconfig1", | |
"properties": { | |
"privateIPAllocationMethod": "Dynamic", | |
"publicIPAddress": { | |
"id": "[resourceId('Microsoft.Network/publicIPAddresses',variables('publicIPAddressName'))]" | |
}, | |
"subnet": { | |
"id": "[variables('subnetRef')]" | |
} | |
} | |
} | |
], | |
"networkSecurityGroup": { | |
"id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('networkSecurityGroupName'))]" | |
} | |
} | |
}, | |
{ | |
"apiVersion": "2017-03-30", | |
"type": "Microsoft.Compute/disks", | |
"name": "[variables('OSDiskName')]", | |
"location": "[resourceGroup().location]", | |
"tags": { | |
"displayName": "Disks" | |
}, | |
"properties": { | |
"creationData": { | |
"createOption": "Import", | |
"sourceUri": "https://marcplayvic.blob.core.windows.net/temp/abcd.vhd" | |
}, | |
"diskSizeGB": 128 | |
}, | |
"dependsOn": [ | |
] | |
}, | |
{ | |
"apiVersion": "2017-03-30", | |
"type": "Microsoft.Compute/virtualMachines", | |
"name": "[parameters('vmName')]", | |
"location": "[resourceGroup().location]", | |
"tags": { | |
"displayName": "VirtualMachine" | |
}, | |
"properties": { | |
"hardwareProfile": { | |
"vmSize": "[parameters('vmSize')]" | |
}, | |
"storageProfile": { | |
"osDisk": { | |
"name": "[variables('osDiskName')]", | |
"caching": "ReadWrite", | |
"osType": "[parameters('osType')]", | |
"createOption": "Attach", | |
"managedDisk": { | |
"id": "[resourceId('Microsoft.Compute/disks',variables('osDiskName'))]" | |
} | |
//"diskSizeGB": 128 | |
} | |
}, | |
"networkProfile": { | |
"networkInterfaces": [ | |
{ | |
"id": "[resourceId('Microsoft.Network/networkInterfaces',variables('nicName'))]" | |
} | |
] | |
}, | |
"diagnosticsProfile": { | |
"bootDiagnostics": { | |
"enabled": true, | |
"storageUri": "[concat(reference(concat('Microsoft.Storage/storageAccounts/', variables('diagStorageAccountName')), '2016-01-01').primaryEndpoints.blob)]" | |
} | |
} | |
}, | |
"dependsOn": [ | |
"[resourceId('Microsoft.Compute/disks/', variables('OSDiskName'))]", | |
"[resourceId('Microsoft.Storage/storageAccounts/', variables('diagStorageAccountName'))]", | |
"[concat('Microsoft.Network/networkInterfaces/', variables('nicName'))]" | |
] | |
}, | |
{ | |
"apiVersion": "2016-01-01", | |
"type": "Microsoft.Storage/storageAccounts", | |
"name": "[variables('diagStorageAccountName')]", | |
"location": "[resourceGroup().location]", | |
"tags": { | |
"displayName": "StorageAccount" | |
}, | |
"sku": { | |
"name": "Standard_LRS" | |
}, | |
"kind": "Storage", | |
"properties": {} | |
}, | |
{ | |
"name": "[variables('networkSecurityGroupName')]", | |
"type": "Microsoft.Network/networkSecurityGroups", | |
"apiVersion": "2016-09-01", | |
"location": "[resourceGroup().location]", | |
"tags": { | |
"displayName": "NSG" | |
}, | |
"properties": { | |
"securityRules": [ | |
{ | |
"name": "default-allow-rdp", | |
"properties": { | |
"priority": 1000, | |
"sourceAddressPrefix": "*", | |
"protocol": "Tcp", | |
"destinationPortRange": "3389", | |
"access": "Allow", | |
"direction": "Inbound", | |
"sourcePortRange": "*", | |
"destinationAddressPrefix": "*" | |
} | |
} | |
] | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment