You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Customer intent: "As a cloud administrator, I want to deploy Azure Firewall across multiple Availability Zones, so that I can ensure high availability and enhance the reliability of my network security infrastructure."
12
12
---
13
13
14
-
# Deploy an Azure Firewall with Availability Zones
14
+
# Deploy an Azure Firewall with availability zones
15
15
16
-
Azure Firewall can be configured during deployment to span multiple Availability Zones for increased availability.
16
+
## What are availability zones
17
17
18
-
This feature enables the following scenarios:
18
+
**Availability zones (AZs)** are physically separate datacenters within an Azure region, each with independent power, cooling, and networking. Availability zones isolate infrastructure failures and improve the resiliency and availability of applications.
19
19
20
-
- You can increase availability to 99.99% uptime. For more information, see the Azure Firewall [Service Level Agreement (SLA)](https://azure.microsoft.com/support/legal/sla/azure-firewall/v1_0/). The 99.99% uptime SLA is offered when two or more Availability Zones are selected.
21
-
- You can also associate Azure Firewall to a specific zone just for proximity reasons, using the service standard 99.95% SLA.
20
+
A **region** that supports availability zones typically has three distinct zones (for example, Zone 1, Zone 2, and Zone 3). Not all Azure regions support availability zones.
21
+
For Azure Firewall, availability zones determine how firewall instances are placed within a region and how resilient the firewall is to zonal failures.
22
22
23
-
For more information about Azure Firewall Availability Zones, see [Azure Firewall features by SKU](features-by-sku.md#built-in-high-availability-and-availability-zones).
23
+
## Zone redundancy
24
24
25
-
## Configure Availability Zones in Azure Firewall
25
+
Azure Firewall uses a **Zone-redundant-by-default** deployment model to improve resiliency, availability, and protection against zonal failures.
26
26
27
-
Azure Firewall can be configured to use Availability Zones during deployment to enhance availability and reliability. This configuration can be performed using the Azure portal, Azure PowerShell, or other deployment methods.
27
+
Current behavior:
28
+
-**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.
29
+
-**All existing firewalls without a specified zone (that is, set to None)** are being platform-migrated to become zone redundant (ZR).
30
+
-**All existing firewalls deployed in a single zone** aren't migrated at this time.
31
+
- You don't need to take any administrator action to migrate.
32
+
33
+
## Definitions
34
+
35
+
Azure Firewall deployment options fall into the following categories.
36
+
37
+
| Deployment type | Description |
38
+
| --- | --- |
39
+
|**Zone Redundant (ZR)**| Firewall is deployed across multiple availability zones (two or more). |
40
+
|**Zonal (single zone)**| Firewall deployed into a single zone (for example, Zone 1 only). |
41
+
|**Regional (no zones)**| Firewall deployed to no zones. The platform automatically migrates these firewalls to zone redundant. |
42
+
43
+
Some regions don't support availability zones. In those regions, Azure Firewall continues to deploy as a regional resource.
44
+
45
+
## Platform migration of existing firewalls
46
+
47
+
Azure Firewall is actively migrating existing non-ZR firewalls to become zone redundant:
48
+
- Migration is automatic and transparent.
49
+
- No downtime or administrator action is required.
50
+
51
+
## Understanding zone properties after migration
52
+
53
+
After migration:
54
+
- For backward compatibility, migration status (that is, updated zone configuration) doesn't immediately appear in ARM template, JSON, or Azure Resource Group (ARG) properties.
55
+
- The firewall is still zone redundant at the backend.
56
+
- The platform infrastructure manages zone redundancy independently of the ARM template properties.
57
+
58
+
## Configure availability zones in Azure Firewall
59
+
60
+
You can configure Azure Firewall to use availability zones during deployment to enhance availability and reliability. Use the Azure portal, Azure PowerShell, or other deployment methods to set this configuration.
28
61
29
62
### Using Azure portal
30
63
31
-
- By default, the Azure portal does not provide an option to select specific Availability Zones when creating a new Azure Firewall. Azure Firewall is deployed as Zone Redundant by default, adhering to zone redundancy requirements.
64
+
- By default, the Azure portal doesn't provide an option to select specific Availability Zones when creating a new Azure Firewall. Azure Firewall is deployed as Zone Redundant by default, adhering to zone redundancy requirements.
32
65
33
66
### Using APIs
34
67
35
-
-It is recommended not to specify any zones during deployment, as the backend will automatically configure the firewall as Zone Redundant by default.
36
-
- If specific zones are provided during deployment via API, the specified zones will be honored.
68
+
-Don't specify any zones during deployment. The backend automatically configures the firewall as Zone Redundant by default.
69
+
- If you provide specific zones during deployment via API, the specified zones are honored.
37
70
38
71
### Using Azure PowerShell
39
72
40
-
You can configure Availability Zones using Azure PowerShell. The following example demonstrates how to create a firewall in zones 1, 2, and 3.
73
+
You can configure Availability Zones by using Azure PowerShell. The following example demonstrates how to create a firewall in zones 1, 2, and 3.
41
74
42
-
When a standard public IP address is created without specifying a zone, it is configured as zone-redundant by default. Standard public IP addresses can be associated with all zones or a single zone.
75
+
When you create a standard public IP address without specifying a zone, it's configured as zone-redundant by default. Standard public IP addresses can be associated with all zones or a single zone.
43
76
44
-
It is important to note that a firewall cannot be deployed in one zone while its public IP address is in another zone. However, you can deploy a firewall in a specific zone and associate it with a zone-redundant public IP address, or deploy both the firewall and the public IP address in the same zone for proximity purposes.
77
+
A firewall can't be deployed in one zone while its public IP address is in another zone. However, you can deploy a firewall in a specific zone and associate it with a zone-redundant public IP address, or deploy both the firewall and the public IP address in the same zone for proximity purposes.
45
78
46
79
```azurepowershell
47
80
$rgName = "Test-FW-RG"
@@ -70,11 +103,19 @@ New-AzFirewall `
70
103
### Limitations
71
104
72
105
- Azure Firewall with Availability Zones is supported only in regions that offer Availability Zones.
73
-
- In regions with zonal restrictions due to capacity constraints, deploying a Zone Redundant Firewall may fail. In such cases, you can deploy the firewall in a single zone or in available zones to proceed with the deployment.
106
+
- In regions with zonal restrictions due to capacity constraints, deploying a Zone Redundant Firewall fails. In such cases, you can deploy the firewall in a single zone or in available zones to proceed with the deployment.
74
107
- Zonal Restrictions are documented in the [Azure Firewall known issues](firewall-known-issues.md) page.
75
108
76
109
By configuring Availability Zones, you can achieve higher availability and ensure your network security infrastructure is more resilient.
77
110
111
+
## Service level agreements (SLA)
112
+
113
+
- When you deploy Azure Firewall as zone redundant (two or more Availability Zones), you get a **99.99%** uptime SLA.
114
+
- A **99.95%** uptime SLA applies to regional deployments in regions that don't support Availability Zones.
115
+
116
+
For more information, see the Azure Firewall [Service Level Agreement (SLA)](https://azure.microsoft.com/support/legal/sla/azure-firewall/v1_0/) and [Azure Firewall features by SKU](features-by-sku.md#built-in-high-availability-and-availability-zones).
0 commit comments