An Azure service that enables the connection of on-premises networks to Azure through site-to-site virtual private networks.
Yes. If the gateway already uses a Standard public IP and the target AZ SKU is available in the Configuration page, the supported path is to manually upgrade the gateway SKU by selecting the AZ SKU from the dropdown and saving the change.
For this scenario:
- In Azure portal, open the virtual network gateway.
- Go to Configuration.
- In SKU, select the AZ equivalent, such as VpnGw2AZ.
- Save the configuration change.
Key points:
- Manual upgrade is the recommended action for gateways that are not already on an availability zone SKU.
- If the current gateway uses a Standard public IP, no downtime is expected for a manual SKU upgrade.
- If the SKU already ends with
AZ, no migration is needed. - The portal only shows SKUs that are available for selection for that gateway.
How to verify before changing:
- In the portal: virtual network gateway → Configuration → check SKU.
- In PowerShell:
(Get-AzVirtualNetworkGateway -Name "vpn-gateway" -ResourceGroupName "test-rg").Sku.Name - In Azure CLI:
az network vnet-gateway show --name "vpn-gateway" --resource-group "test-rg" --query "sku.name"
Important exception:
- This simple in-place upgrade does not apply to Basic, legacy, or some Gen2 cases that cannot be directly upgraded. Those cases follow different workflows, and Basic SKU gateways require delete-and-recreate with downtime.
Since the gateway described already has a Standard IP and VpnGw2AZ is selectable in the portal, selecting VpnGw2AZ and saving is the correct upgrade path.