Azure Virtual Machine Scale Set ARM template

In addition, here is the ARM template to deploy a new Azure Virtual Machine Scale Set:

{ "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", "contentVersion": "1.0.0.0", "parameters": { "vmSku": { "type": "string", "defaultValue": "Standard_D1", "metadata": { "description": "Size of VMs in the VM Scale Set." } }, "vmssName": { "type": "string", "metadata": { "description": "String used as a base for naming resources. Must be 3-61 characters in length and globally unique across Azure. A hash is prepended to this string for some resources, and resource-specific information is appended." }, "maxLength": 61 }, "instanceCount": { "type": "int", "metadata": {

Get Hands-On Cloud Administration in Azure now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.