From 9215ede1ab384775b4ca64e124f26762d888300a Mon Sep 17 00:00:00 2001 From: Shital Savekar Date: Wed, 30 May 2018 22:39:12 -0700 Subject: [PATCH] Changed the resource group deployment name (fixes bug) --- Libraries/Azure.psm1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Azure.psm1 b/Libraries/Azure.psm1 index 01a32b4fc..8a562d6ef 100644 --- a/Libraries/Azure.psm1 +++ b/Libraries/Azure.psm1 @@ -676,7 +676,7 @@ Function CreateResourceGroupDeployment([string]$RGName, $location, $setupType, $ { $FailCounter = 0 $retValue = "False" - $ResourceGroupDeploymentName = $RGName + "-deployment" + $ResourceGroupDeploymentName = "LISA-" + [guid]::NewGuid().Guid While(($retValue -eq $false) -and ($FailCounter -lt 1)) { try