From d1ca907b9bd100c366e22efae98851a464117408 Mon Sep 17 00:00:00 2001 From: srdan-bozovic-msft Date: Sun, 5 May 2019 10:20:57 +0200 Subject: [PATCH] mod: deployment to support standard gw sku --- .../attach-vpn-gateway/azuredeploy.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/samples/manage/azure-sql-db-managed-instance/attach-vpn-gateway/azuredeploy.json b/samples/manage/azure-sql-db-managed-instance/attach-vpn-gateway/azuredeploy.json index 9532f57e..eb603ed7 100644 --- a/samples/manage/azure-sql-db-managed-instance/attach-vpn-gateway/azuredeploy.json +++ b/samples/manage/azure-sql-db-managed-instance/attach-vpn-gateway/azuredeploy.json @@ -37,7 +37,6 @@ "variables": { "gatewayPublicIpAddressName": "[concat('GatewayIP-', uniqueString(resourceGroup().id))]", "gatewayName": "[concat('Gateway-', uniqueString(resourceGroup().id))]", - "gatewaySku": "Basic", "gatewaySubnetName": "GatewaySubnet", "clientRootCertName": "RootCert" }, @@ -75,9 +74,13 @@ } ], "sku": { - "name": "[variables('gatewaySku')]", - "tier": "[variables('gatewaySku')]" + "name": "Standard", + "tier": "Standard" }, + "vpnClientProtocols": [ + "IkeV2", + "SSTP" + ], "gatewayType": "Vpn", "vpnType": "RouteBased", "enableBgp": "false",