Skip to content

Files

Latest commit

Jan 31, 2017
b8c91c9 · Jan 31, 2017

History

History
This branch is 27418 commits behind Azure/azure-quickstart-templates:master.

101-vm-linux-serial-output

Simple Linux VM created with serial/console output configured

This is a simple template that will create a single VM with very limited parameters in order to demonstrate how to configure serial and console output.

The interesting portion of this template worth noting is here:

	"diagnosticsProfile": {
      "bootDiagnostics": {
         "enabled": "true",
		 "storageUri": "[concat('http://',parameters('newStorageAccountName'),'.blob.core.windows.net')]"
      }
    }

The rest of the template is pretty standard.