Dear All
I'm a bit stuck, deploying a new Azure VPN Gateway with the Basic SKU. According to the docs this is still possible: https://learn.microsoft.com/en-us/azure/vpn-gateway/vpn-gateway-about-vpn-gateway-settings#benchmark
And according to the docs this has to be down via Powershell or Azure CLI. I have already done this over the Azure Portal recently, but now I am unable to select the Basic SKU.
So I have tried to deploy the Gateway with Powershell:
$gwname = "vnet-gw-v-chno-01"
$rgname = "rg-network-chno-01"
$pipid = "...."
$subnetid = "...."
$location = "Switzerland North"
-Name "$($gwname)-config" `
-SubnetId $subnetid `
-PublicIpAddressId $pipid
New-AzVirtualNetworkGateway `
-Name $gwname `
-ResourceGroupName $rgname `
-Location $location `
-IpConfigurations $ngwipconfig `
-GatewayType "Vpn" `
-VpnType "RouteBased" `
-GatewaySku "Basic"
But then, I get the following error-message:
New-AzVirtualNetworkGateway: Virtual network gateway Sku specified is not valid for gateway ..../vnet-gw-v-chno-01 with DeploymentType VMScaleSet. The allowed Skus are VpnGw1AZ,VpnGw2AZ,VpnGw3AZ,VpnGw4AZ,VpnGw5AZ,VpnGw1,VpnGw2,VpnGw3,VpnGw4,VpnGw5.
StatusCode: 400
ReasonPhrase:
ErrorCode: InvalidGatewaySkuSpecifiedForGatewayDeploymentType
ErrorMessage: Virtual network gateway Sku specified is not valid for gateway /..../vnet-gw-v-chno-01 with DeploymentType VMScaleSet. The allowed Skus are VpnGw1AZ,VpnGw2AZ,VpnGw3AZ,VpnGw4AZ,VpnGw5AZ,VpnGw1,VpnGw2,VpnGw3,VpnGw4,VpnGw5.
OperationID : ....
Same when I try with Azure CLI:
az network vnet-gateway create \
-n "vnet-gw-v-chno-01" \
-l "Switzerland North" \
--public-ip-address "pip-vpn-gw-chno-01" \
-g "rg-network-chno-01" \
--vnet "vnet-chno-01" \
--gateway-type Vpn \
--sku "Basic" \
--vpn-type RouteBased \
--no-wait
I get the following error:
(InvalidGatewaySkuSpecifiedForGatewayDeploymentType) Virtual network gateway Sku specified is not valid for gateway /..../vnet-gw-v-chno-01 with DeploymentType VMScaleSet. The allowed Skus are VpnGw1AZ,VpnGw2AZ,VpnGw3AZ,VpnGw4AZ,VpnGw5AZ,VpnGw1,VpnGw2,VpnGw3,VpnGw4,VpnGw5. Code: InvalidGatewaySkuSpecifiedForGatewayDeploymentType Message: Virtual network gateway Sku specified is not valid for gateway /..../vnet-gw-v-chno-01 with DeploymentType VMScaleSet. The allowed Skus are VpnGw1AZ,VpnGw2AZ,VpnGw3AZ,VpnGw4AZ,VpnGw5AZ,VpnGw1,VpnGw2,VpnGw3,VpnGw4,VpnGw5.
So it seems, that the Basic Sku is not available anymore, but still in the docs, and I was not able to find a retirement notice.
Does anyone know more about this? Is this a bug, or is the Basic SKU really not available anymore?
Thanks for any help on this one.
Best regards