An Azure network security service that is used to protect Azure Virtual Network resources.
Hi Iu Donadeu Renau,
Welcome to Microsoft Q&A Platform.
In regions that support Availability Zones (like Spain Central), any new Azure Firewall you create without explicitly specifying a zone is automatically deployed as zone-redundant—even though the portal doesn’t show a “Zone redundancy” toggle.
You can verify:
Default zone-redundant deployment
- When you deploy via the portal (or via CLI/PowerShell without a –zones parameter), Azure treats it as “None” in your ARM JSON, then transparently spreads instances across two or more zones.
- You won’t see a UI flag; this is a platform-managed feature.
Zonal versus zone-redundant in ARM/CLI
- If you explicitly deploy to a single zone (e.g. --zones 1), the firewall is zonal. You’ll see "zones": ["1"] in the resource JSON.
- If you leave out zones (or it shows as null/empty), it’s zone-redundant.
Verify via CLI or PowerShell
az network firewall show -g MyRG -n MyFirewall --query zones
PowerShell:
(Get-AzFirewall -ResourceGroupName MyRG -Name MyFirewall).Zones
Empty/null = zone-redundant; populated = zonal
Resource Graph behavior
Resource Graph will show the zones property as an empty array or null for zone-redundant firewalls. That’s expected and confirms your firewall is indeed spread across multiple zones. So, even though the portal doesn’t show “zone redundant” in the blades, your firewall in Spain Central is automatically zone-redundant as long as you didn’t pin it to a specific zone.
As stated in Zone redundancy
Azure Firewall uses a Zone-redundant-by-default deployment model to improve resiliency, availability, and protection against zonal failures.
Current behavior:
- All new Azure Firewall deployments that don't explicitly specify zones (that is, set to None) are zone redundant by default in regions that support availability zones.
- All existing firewalls without a specified zone (that is, set to None) are being platform-migrated to become zone redundant (ZR).
- All existing firewalls deployed in a single zone aren't migrated at this time.
- You don't need to take any administrator action to migrate.
References:
Configure availability zone support
Please
and “up-vote” wherever the information provided helps you, **this can be beneficial to other community members.