We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d0df91 commit d1ca907Copy full SHA for d1ca907
1 file changed
samples/manage/azure-sql-db-managed-instance/attach-vpn-gateway/azuredeploy.json
@@ -37,7 +37,6 @@
37
"variables": {
38
"gatewayPublicIpAddressName": "[concat('GatewayIP-', uniqueString(resourceGroup().id))]",
39
"gatewayName": "[concat('Gateway-', uniqueString(resourceGroup().id))]",
40
- "gatewaySku": "Basic",
41
"gatewaySubnetName": "GatewaySubnet",
42
"clientRootCertName": "RootCert"
43
},
@@ -75,9 +74,13 @@
75
74
}
76
],
77
"sku": {
78
- "name": "[variables('gatewaySku')]",
79
- "tier": "[variables('gatewaySku')]"
+ "name": "Standard",
+ "tier": "Standard"
80
+ "vpnClientProtocols": [
81
+ "IkeV2",
82
+ "SSTP"
83
+ ],
84
"gatewayType": "Vpn",
85
"vpnType": "RouteBased",
86
"enableBgp": "false",
0 commit comments