An Azure network security service that is used to protect Azure Virtual Network resources.
Hi Patrick Kuehn ,
Welcome to Microsoft Q&A Platform.
As Stated in Change Azure Firewall SKU.
Azure Firewall Basic SKU does not support SKU changes on an existing firewall. Upgrading from Basic to Premium is supported only through the stop/start process.
There is no supported Basic→Standard path on the same firewall.
Alternatively, try deleting the Basic Azure Firewall. Please make sure not to delete the Firewall Public IP; by default, deleting the firewall does not remove the associated Public IP. Once the deletion is completed, please create a new Standard Firewall using Azure PowerShell, as there is currently a bug in the Azure Portal that prevents reusing the same Public IP through the portal interface.
In this way, you can reuse the same Public IP with the Standard Firewall, and there will be no service disruption on the customer side.
Here is the PowerShell script to reuse the Basic Azure Firewall Public IP with a new Standard Firewall.
Note: In my case, I used the existing Basic Firewall VNet and Public IP.
$vnet = Get-AzVirtualNetwork -Name "venkat-firewall" -ResourceGroupName "AI_RG"
$publicip = Get-AzPublicIpAddress -Name "test" -ResourceGroupName "AI_RG"
$Azfw = New-AzFirewall -Name "Test-FW01" -ResourceGroupName "AI_RG" -Location "East US" -VirtualNetwork $vnet -PublicIpAddress $publicip
Output:
Please
and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.