Skip to content

Commit d1ca907

Browse files
mod: deployment to support standard gw sku
1 parent 3d0df91 commit d1ca907

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

samples/manage/azure-sql-db-managed-instance/attach-vpn-gateway/azuredeploy.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
"variables": {
3838
"gatewayPublicIpAddressName": "[concat('GatewayIP-', uniqueString(resourceGroup().id))]",
3939
"gatewayName": "[concat('Gateway-', uniqueString(resourceGroup().id))]",
40-
"gatewaySku": "Basic",
4140
"gatewaySubnetName": "GatewaySubnet",
4241
"clientRootCertName": "RootCert"
4342
},
@@ -75,9 +74,13 @@
7574
}
7675
],
7776
"sku": {
78-
"name": "[variables('gatewaySku')]",
79-
"tier": "[variables('gatewaySku')]"
77+
"name": "Standard",
78+
"tier": "Standard"
8079
},
80+
"vpnClientProtocols": [
81+
"IkeV2",
82+
"SSTP"
83+
],
8184
"gatewayType": "Vpn",
8285
"vpnType": "RouteBased",
8386
"enableBgp": "false",

0 commit comments

Comments
 (0)