Created
May 3, 2018 13:59
-
-
Save fboucher/adea0acd95f86e5838cf812c010564cf to your computer and use it in GitHub Desktop.
This file contains hidden or 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": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
| "contentVersion": "1.0.0.0", | |
| "parameters": { | |
| "location": { | |
| "type": "string" | |
| }, | |
| "virtualMachineName": { | |
| "type": "string", | |
| "metadata": { | |
| "description": "Base name for VM and other components" | |
| } | |
| }, | |
| "adminUsername": { | |
| "type": "string", | |
| "metadata": { | |
| "description": "Name of Administrator user on the VM" | |
| } | |
| }, | |
| "adminPassword": { | |
| "type": "securestring", | |
| "metadata": { | |
| "description": "PWD of Administrator user on the VM" | |
| } | |
| }, | |
| "EnvironmentSize": { | |
| "type": "string", | |
| "defaultValue": "medium", | |
| "allowedValues": [ | |
| "medium", | |
| "large" | |
| ], | |
| "metadata": { | |
| "description": "Medium for regular development. Large for Machine Learning development" | |
| } | |
| } | |
| }, | |
| "variables": { | |
| "suffix": "[uniqueString(resourceGroup().id, resourceGroup().location)]", | |
| "VMName": "[toLower(concat(parameters('virtualMachineName'), variables('suffix')))]", | |
| "resourceGroupName": "[toLower(resourceGroup().name)]", | |
| "TS-Size":{ | |
| "medium":{ | |
| "VMSize": "Standard_D2s_v3" | |
| }, | |
| "large":{ | |
| "VMSize": "Standard_D8s_v3" | |
| } | |
| }, | |
| "virtualNetworkName": "[concat(variables('resourceGroupName'), '-vnet')]", | |
| "networkInterfaceName": "[toLower(concat(variables('VMName'),'-nic-', variables('suffix')))]", | |
| "networkSecurityGroupName": "[toLower(concat(variables('VMName'),'-nsg-', variables('suffix')))]", | |
| "diagnosticsStorageAccountName": "[substring(concat(variables('resourceGroupName'), 'diag', variables('suffix')), 0, 24)]", | |
| "diagnosticsStorageAccountType": "Standard_LRS", | |
| "diagnosticsStorageAccountKind": "Storage", | |
| "addressPrefix": "10.0.0.0/24", | |
| "subnetName": "default", | |
| "subnetPrefix": "10.0.0.0/24", | |
| "publicIpAddressName": "[toLower(concat(variables('VMName'),'-ip-', variables('suffix')))]", | |
| "publicIpAddressType": "Dynamic", | |
| "publicIpAddressSku": "Basic", | |
| "autoShutdownStatus": "Enabled", | |
| "autoShutdownTime": "18:00", | |
| "autoShutdownTimeZone": "Eastern Standard Time", | |
| "autoShutdownNotificationStatus": "Disabled", | |
| "vnetId": "[resourceId('Microsoft.Network/virtualNetworks', variables('virtualNetworkName'))]", | |
| "subnetRef": "[concat(variables('vnetId'), '/subnets/', variables('subnetName'))]" | |
| }, | |
| "resources": [ | |
| { | |
| "name": "[variables('VMName')]", | |
| "type": "Microsoft.Compute/virtualMachines", | |
| "apiVersion": "2017-03-30", | |
| "location": "[parameters('location')]", | |
| "dependsOn": [ | |
| "[concat('Microsoft.Network/networkInterfaces/', variables('networkInterfaceName'))]", | |
| "[concat('Microsoft.Storage/storageAccounts/', variables('diagnosticsStorageAccountName'))]" | |
| ], | |
| "properties": { | |
| "osProfile": { | |
| "computerName": "[variables('VMName')]", | |
| "adminUsername": "[parameters('adminUsername')]", | |
| "adminPassword": "[parameters('adminPassword')]", | |
| "windowsConfiguration": { | |
| "provisionVmAgent": "true" | |
| } | |
| }, | |
| "hardwareProfile": { | |
| "vmSize": "[variables('TS-Size')[parameters('EnvironmentSize')].VMSize]" | |
| }, | |
| "storageProfile": { | |
| "imageReference": { | |
| "publisher": "MicrosoftVisualStudio", | |
| "offer": "VisualStudio", | |
| "sku": "VS-2017-Ent-Latest-Win10-N", | |
| "version": "latest" | |
| }, | |
| "osDisk": { | |
| "createOption": "fromImage", | |
| "managedDisk": { | |
| "storageAccountType": "Premium_LRS" | |
| } | |
| }, | |
| "dataDisks": [] | |
| }, | |
| "networkProfile": { | |
| "networkInterfaces": [ | |
| { | |
| "id": "[resourceId('Microsoft.Network/networkInterfaces', variables('networkInterfaceName'))]" | |
| } | |
| ] | |
| }, | |
| "diagnosticsProfile": { | |
| "bootDiagnostics": { | |
| "enabled": true, | |
| "storageUri": "[reference(resourceId('Microsoft.Storage/storageAccounts', variables('diagnosticsStorageAccountName')), '2015-06-15').primaryEndpoints['blob']]" | |
| } | |
| } | |
| } | |
| }, | |
| { | |
| "name": "[concat('shutdown-computevm-', variables('VMName'))]", | |
| "type": "Microsoft.DevTestLab/schedules", | |
| "apiVersion": "2017-04-26-preview", | |
| "location": "[parameters('location')]", | |
| "properties": { | |
| "status": "[variables('autoShutdownStatus')]", | |
| "taskType": "ComputeVmShutdownTask", | |
| "dailyRecurrence": { | |
| "time": "[variables('autoShutdownTime')]" | |
| }, | |
| "timeZoneId": "[variables('autoShutdownTimeZone')]", | |
| "targetResourceId": "[resourceId('Microsoft.Compute/virtualMachines', variables('VMName'))]", | |
| "notificationSettings": { | |
| "status": "[variables('autoShutdownNotificationStatus')]", | |
| "timeInMinutes": "30" | |
| } | |
| }, | |
| "dependsOn": [ | |
| "[concat('Microsoft.Compute/virtualMachines/', variables('VMName'))]" | |
| ] | |
| }, | |
| { | |
| "name": "[variables('diagnosticsStorageAccountName')]", | |
| "type": "Microsoft.Storage/storageAccounts", | |
| "apiVersion": "2015-06-15", | |
| "location": "[parameters('location')]", | |
| "kind": "[variables('diagnosticsStorageAccountKind')]", | |
| "properties": { | |
| "accountType": "[variables('diagnosticsStorageAccountType')]" | |
| } | |
| }, | |
| { | |
| "name": "[variables('virtualNetworkName')]", | |
| "type": "Microsoft.Network/virtualNetworks", | |
| "apiVersion": "2018-02-01", | |
| "location": "[parameters('location')]", | |
| "properties": { | |
| "addressSpace": { | |
| "addressPrefixes": [ | |
| "[variables('addressPrefix')]" | |
| ] | |
| }, | |
| "subnets": [ | |
| { | |
| "name": "[variables('subnetName')]", | |
| "properties": { | |
| "addressPrefix": "[variables('subnetPrefix')]" | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| { | |
| "name": "[variables('networkInterfaceName')]", | |
| "type": "Microsoft.Network/networkInterfaces", | |
| "apiVersion": "2016-09-01", | |
| "location": "[parameters('location')]", | |
| "dependsOn": [ | |
| "[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]", | |
| "[concat('Microsoft.Network/publicIpAddresses/', variables('publicIpAddressName'))]", | |
| "[concat('Microsoft.Network/networkSecurityGroups/', variables('networkSecurityGroupName'))]" | |
| ], | |
| "properties": { | |
| "ipConfigurations": [ | |
| { | |
| "name": "ipconfig1", | |
| "properties": { | |
| "subnet": { | |
| "id": "[variables('subnetRef')]" | |
| }, | |
| "privateIPAllocationMethod": "Dynamic", | |
| "publicIpAddress": { | |
| "id": "[resourceId('Microsoft.Network/publicIpAddresses', variables('publicIpAddressName'))]" | |
| } | |
| } | |
| } | |
| ], | |
| "networkSecurityGroup": { | |
| "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('networkSecurityGroupName'))]" | |
| } | |
| } | |
| }, | |
| { | |
| "name": "[variables('publicIpAddressName')]", | |
| "type": "Microsoft.Network/publicIpAddresses", | |
| "apiVersion": "2017-08-01", | |
| "location": "[parameters('location')]", | |
| "properties": { | |
| "publicIpAllocationMethod": "[variables('publicIpAddressType')]" | |
| }, | |
| "sku": { | |
| "name": "[variables('publicIpAddressSku')]" | |
| } | |
| }, | |
| { | |
| "name": "[variables('networkSecurityGroupName')]", | |
| "type": "Microsoft.Network/networkSecurityGroups", | |
| "apiVersion": "2017-06-01", | |
| "location": "[parameters('location')]", | |
| "properties": { | |
| "securityRules": [ | |
| { | |
| "name": "default-allow-rdp", | |
| "properties": { | |
| "priority": 1000, | |
| "protocol": "TCP", | |
| "access": "Allow", | |
| "direction": "Inbound", | |
| "sourceAddressPrefix": "*", | |
| "sourcePortRange": "*", | |
| "destinationAddressPrefix": "*", | |
| "destinationPortRange": "3389" | |
| } | |
| } | |
| ] | |
| } | |
| } | |
| ], | |
| "outputs": { | |
| "adminUsername": { | |
| "type": "string", | |
| "value": "[parameters('adminUsername')]" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment