Skip to content

Commit

Permalink
Trim double quotes from Get-AzureRmVpnClientPackage return value
Browse files Browse the repository at this point in the history
Based on comment on original issue posted: Azure/azure-powershell#3391 (comment)
  • Loading branch information
russcam committed Dec 4, 2017
1 parent 99f936f commit f875b2c
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -242,7 +242,7 @@ function Add-AppServiceToExistingVnet($subscriptionId, $webAppResourceGroup, $we
# Put the VPN client configuration package onto the App
$virtualNetworkGatewayParameters = @{
"vnetName" = $vnet.Name;
"vpnPackageUri" = $packageUri
"vpnPackageUri" = $packageUri.ToString().Trim('"')
}

Write-Log "Adding website $webAppName to Virtual Network $($vnet.Name)"
Expand Down Expand Up @@ -390,4 +390,4 @@ Need to Sync Network in Azure Portal!
nusearch-web -> App Service Plan -> Networking -> VNet Integration -> click network name -> click Sync Network
#>
#>

0 comments on commit f875b2c

Please sign in to comment.