From 7e6ea9f0074577167069708a1062448e6bfc9915 Mon Sep 17 00:00:00 2001 From: Radhika Gupta Date: Thu, 23 Mar 2017 22:44:57 -0700 Subject: [PATCH] Issue with max length. Fixing. (#214) * Template for VMMS Template: Windows: Deploy a VM Scale Set of Windows VMs with a custom script extension (201-vmss-custom-script-windows) * Create a template to showcase DNS zones and record sets * Fix the length in the parameter file. * Revert * Issue with length. --- 201-vmss-custom-script-windows/azuredeploy.parameters.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/201-vmss-custom-script-windows/azuredeploy.parameters.json b/201-vmss-custom-script-windows/azuredeploy.parameters.json index f98aacc3..47127df3 100644 --- a/201-vmss-custom-script-windows/azuredeploy.parameters.json +++ b/201-vmss-custom-script-windows/azuredeploy.parameters.json @@ -9,7 +9,7 @@ "value": "[concat('Subscription#', substring(resourcegroup().id, 15, 36))]" }, "vmssName": { - "value": "[substring(concat('winvmss', resourceGroup().Name), 0, 10)]" + "value": "[substring(concat('winvmss', resourceGroup().Name), 0, 9)]" } } }