Last active
March 8, 2016 01:11
-
-
Save obsoleted/34716083a9205eba6df7 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/2014-04-01-preview/deploymentTemplate.json", | |
| "contentVersion": "1.0.0.0", | |
| "parameters": { | |
| "adminUserName": { | |
| "type": "string", | |
| "metadata": { | |
| "description": "User name for the Virtual Machine." | |
| } | |
| }, | |
| "sshKeyData": { | |
| "type": "string", | |
| "metadata": { | |
| "description": "SSH rsa public key file as a string." | |
| } | |
| }, | |
| "dnsLabelPrefix": { | |
| "type": "string", | |
| "metadata": { | |
| "description": "Unique DNS Name for the Public IP used to access the Virtual Machine." | |
| } | |
| }, | |
| "vmSize": { | |
| "type": "string", | |
| "defaultValue": "Standard_A2", | |
| "metadata": { | |
| "description": "Size of the VM" | |
| } | |
| }, | |
| "vmName": { | |
| "type": "string", | |
| "metadata": { | |
| "description": "Name of the VM" | |
| } | |
| }, | |
| "ubuntuOSVersion": { | |
| "type": "string", | |
| "defaultValue": "14.04.2-LTS", | |
| "allowedValues": [ | |
| "12.04.5-LTS", | |
| "14.04.2-LTS", | |
| "15.10" | |
| ], | |
| "metadata": { | |
| "description": "The Ubuntu version for the VM. This will pick a fully patched image of this given Ubuntu version. Allowed values: 12.04.5-LTS, 14.04.2-LTS, 15.10." | |
| } | |
| } | |
| }, | |
| "variables": { | |
| "storageAccountName": "[concat(uniquestring(resourceGroup().id), 'sasshvm')]", | |
| "location": "[resourceGroup().location]", | |
| "imagePublisher": "Canonical", | |
| "imageOffer": "UbuntuServer", | |
| "osDiskName": "osDisk1", | |
| "addressPrefix": "10.0.0.0/16", | |
| "subnet1Name": "Subnet-1", | |
| "subnet1Prefix": "10.0.0.0/24", | |
| "vmStorageAccountContainerName": "vhds", | |
| "nicName": "sshNIC", | |
| "publicIPAddressName": "sshPublicIP", | |
| "publicIPAddressType": "Dynamic", | |
| "storageAccountType": "Standard_LRS", | |
| "virtualNetworkName": "sshVNET", | |
| "networkSecurityGroupName": "networkSecurityGroup1", | |
| "sshKeyPath": "[concat('/home/',parameters('adminUsername'),'/.ssh/authorized_keys')]", | |
| "vnetID": "[resourceId('Microsoft.Network/virtualNetworks', variables('virtualNetworkName'))]", | |
| "subnet1Ref": "[concat(variables('vnetID'),'/subnets/',variables('subnet1Name'))]", | |
| "apiVersion": "2015-06-15" | |
| }, | |
| "resources": [ | |
| { | |
| "type": "Microsoft.Storage/storageAccounts", | |
| "name": "[variables('storageAccountName')]", | |
| "apiVersion": "[variables('apiVersion')]", | |
| "location": "[variables('location')]", | |
| "properties": { | |
| "accountType": "[variables('storageAccountType')]" | |
| } | |
| }, | |
| { | |
| "apiVersion": "[variables('apiVersion')]", | |
| "type": "Microsoft.Network/networkSecurityGroups", | |
| "name": "[variables('networkSecurityGroupName')]", | |
| "location": "[variables('location')]", | |
| "properties": { | |
| "securityRules": [ | |
| { | |
| "name": "ssh_rule", | |
| "properties": { | |
| "description": "Locks inbound down to ssh default port 22.", | |
| "protocol": "Tcp", | |
| "sourcePortRange": "*", | |
| "destinationPortRange": "22", | |
| "sourceAddressPrefix": "*", | |
| "destinationAddressPrefix": "*", | |
| "access": "Allow", | |
| "priority": 123, | |
| "direction": "Inbound" | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| { | |
| "apiVersion": "[variables('apiVersion')]", | |
| "type": "Microsoft.Network/publicIPAddresses", | |
| "name": "[variables('publicIPAddressName')]", | |
| "location": "[variables('location')]", | |
| "properties": { | |
| "publicIPAllocationMethod": "[variables('publicIPAddressType')]", | |
| "dnsSettings": { | |
| "domainNameLabel": "[parameters('dnsLabelPrefix')]" | |
| } | |
| } | |
| }, | |
| { | |
| "apiVersion": "[variables('apiVersion')]", | |
| "type": "Microsoft.Network/virtualNetworks", | |
| "name": "[variables('virtualNetworkName')]", | |
| "location": "[variables('location')]", | |
| "dependsOn": [ | |
| "[concat('Microsoft.Network/networkSecurityGroups/', variables('networkSecurityGroupName'))]" | |
| ], | |
| "properties": { | |
| "addressSpace": { | |
| "addressPrefixes": [ | |
| "[variables('addressPrefix')]" | |
| ] | |
| }, | |
| "subnets": [ | |
| { | |
| "name": "[variables('subnet1Name')]", | |
| "properties": { | |
| "addressPrefix": "[variables('subnet1Prefix')]", | |
| "networkSecurityGroup": { | |
| "id": "[resourceId('Microsoft.Network/networkSecurityGroups', variables('networkSecurityGroupName'))]" | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| { | |
| "apiVersion": "[variables('apiVersion')]", | |
| "type": "Microsoft.Network/networkInterfaces", | |
| "name": "[variables('nicName')]", | |
| "location": "[variables('location')]", | |
| "dependsOn": [ | |
| "[concat('Microsoft.Network/publicIPAddresses/', variables('publicIPAddressName'))]", | |
| "[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]" | |
| ], | |
| "properties": { | |
| "ipConfigurations": [ | |
| { | |
| "name": "ipconfig1", | |
| "properties": { | |
| "privateIPAllocationMethod": "Dynamic", | |
| "publicIPAddress": { | |
| "id": "[resourceId('Microsoft.Network/publicIPAddresses', variables('publicIPAddressName'))]" | |
| }, | |
| "subnet": { | |
| "id": "[variables('subnet1Ref')]" | |
| } | |
| } | |
| } | |
| ] | |
| } | |
| }, | |
| { | |
| "apiVersion": "[variables('apiVersion')]", | |
| "type": "Microsoft.Compute/virtualMachines", | |
| "name": "[parameters('vmName')]", | |
| "location": "[variables('location')]", | |
| "dependsOn": [ | |
| "[concat('Microsoft.Storage/storageAccounts/', variables('storageAccountName'))]", | |
| "[concat('Microsoft.Network/networkInterfaces/', variables('nicName'))]" | |
| ], | |
| "properties": { | |
| "hardwareProfile": { | |
| "vmSize": "[parameters('vmSize')]" | |
| }, | |
| "osProfile": { | |
| "computerName": "[parameters('vmName')]", | |
| "adminUsername": "[parameters('adminUsername')]", | |
| "linuxConfiguration": { | |
| "disablePasswordAuthentication": "true", | |
| "ssh": { | |
| "publicKeys": [ | |
| { | |
| "path": "[variables('sshKeyPath')]", | |
| "keyData": "[parameters('sshKeyData')]" | |
| } | |
| ] | |
| } | |
| } | |
| }, | |
| "storageProfile": { | |
| "imageReference": { | |
| "publisher": "[variables('imagePublisher')]", | |
| "offer": "[variables('imageOffer')]", | |
| "sku": "[parameters('ubuntuOSVersion')]", | |
| "version": "latest" | |
| }, | |
| "osDisk": { | |
| "name": "osdisk", | |
| "vhd": { | |
| "uri": "[concat('http://',variables('storageAccountName'),'.blob.core.windows.net/',variables('vmStorageAccountContainerName'),'/', variables('osDiskName'),'.vhd')]" | |
| }, | |
| "caching": "ReadWrite", | |
| "createOption": "FromImage" | |
| } | |
| }, | |
| "networkProfile": { | |
| "networkInterfaces": [ | |
| { | |
| "id": "[resourceId('Microsoft.Network/networkInterfaces', variables('nicName'))]" | |
| } | |
| ] | |
| }, | |
| "diagnosticsProfile": { | |
| "bootDiagnostics": { | |
| "enabled": "true", | |
| "storageUri": "[concat('http://',variables('storageAccountName'),'.blob.core.windows.net')]" | |
| } | |
| } | |
| } | |
| } | |
| ], | |
| "outputs": { | |
| "testOutput": { | |
| "type": "string", | |
| "value": "testOutputValue" | |
| }, | |
| "someRealOutput": { | |
| "type": "string", | |
| "value": "[resourceId('Microsoft.Network/networkInterfaces', variables('nicName'))]" | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment