From 0af5830e4624fef30d3338609e73b61025acc7d4 Mon Sep 17 00:00:00 2001 From: Trent Swanson Date: Tue, 28 Apr 2015 18:18:58 -0700 Subject: [PATCH] cleanup case on descrtiption --- diskraid-ubuntu-vm/azuredeploy.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/diskraid-ubuntu-vm/azuredeploy.json b/diskraid-ubuntu-vm/azuredeploy.json index 019340e..0951739 100644 --- a/diskraid-ubuntu-vm/azuredeploy.json +++ b/diskraid-ubuntu-vm/azuredeploy.json @@ -5,76 +5,76 @@ "adminUsername": { "type": "string", "metadata": { - "Description": "Admin username used when provisioning virtual machines" + "description": "Admin username used when provisioning virtual machines" } }, "adminPassword": { "type": "securestring", "metadata": { - "Description": "Admin password used when provisioning virtual machines" + "description": "Admin password used when provisioning virtual machines" } }, "storageAccountName": { "type": "string", "defaultValue": "uniqueStorageAccountName", "metadata": { - "Description": "Unique namespace for the Storage Account where the Virtual Machine's disks will be placed" + "description": "Unique namespace for the Storage Account where the Virtual Machine's disks will be placed" } }, "region": { "type": "string", "defaultValue": "West US", "metadata": { - "Description": "Location where resources will be provisioned" + "description": "Location where resources will be provisioned" } }, "virtualNetworkName": { "type": "string", "defaultValue": "myVNET", "metadata": { - "Description": "Virtual Network" + "description": "Virtual Network" } }, "vmSize": { "type": "string", "defaultValue": "Standard_A1", "metadata": { - "Description": "Size of the virtual machine" + "description": "Size of the virtual machine" } }, "addressPrefix": { "type": "string", "defaultValue": "10.0.0.0/16", "metadata": { - "Description": "Address space for the VNET" + "description": "Address space for the VNET" } }, "subnet1Name": { "type": "string", "defaultValue": "Data", "metadata": { - "Description": "Subnet name for the VNET that resources will be provisionined in to" + "description": "Subnet name for the VNET that resources will be provisionined in to" } }, "subnet1Prefix": { "type": "string", "defaultValue": "10.0.0.0/24", "metadata": { - "Description": "Address space for the subnet" + "description": "Address space for the subnet" } }, "dnsName": { "type": "string", "defaultValue": "uniqueName", "metadata": { - "Description": "Load balancer subdomain name: for example (.westus.cloudapp.azure.com)" + "description": "Load balancer subdomain name: for example (.westus.cloudapp.azure.com)" } }, "dataDiskSize": { "type": "int", "defaultValue": 20, "metadata": { - "Description": "Size of each data disk attached to data nodes in (Gb)" + "description": "Size of each data disk attached to data nodes in (Gb)" } } },