This commit is contained in:
Srđan Božović
2018-08-24 03:21:16 +02:00
parent b71c7b532b
commit d8b92e6aee
2 changed files with 7 additions and 1 deletions
@@ -172,7 +172,6 @@ Write-Host
Write-Host "Starting deployment..." Write-Host "Starting deployment..."
$templateParameters = @{ $templateParameters = @{
location = $virtualNetwork.Location
virtualNetworkName = $virtualNetworkName virtualNetworkName = $virtualNetworkName
gatewaySubnetPrefix = $gatewaySubnetPrefix gatewaySubnetPrefix = $gatewaySubnetPrefix
vpnClientAddressPoolPrefix = $vpnClientAddressPoolPrefix vpnClientAddressPoolPrefix = $vpnClientAddressPoolPrefix
@@ -2,6 +2,13 @@
"$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#", "$schema": "http://schema.management.azure.com/schemas/2014-04-01-preview/deploymentTemplate.json#",
"contentVersion": "1.0.0.1", "contentVersion": "1.0.0.1",
"parameters": { "parameters": {
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]",
"metadata": {
"description": "Enter location. If you leave this field blank resource group location would be used."
}
},
"virtualNetworkName": { "virtualNetworkName": {
"type": "string", "type": "string",
"metadata": { "metadata": {