Skip to content

Commit d3985f5

Browse files
author
Igor Pagliai
committed
Committed reviewer comments
1 parent 78fcfc1 commit d3985f5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/firewall-manager/secure-cloud-network-powershell.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In this tutorial, you learn how to:
2222
> * Test connectivity
2323
2424
> [!IMPORTANT]
25-
> Virtual WAN is a collection of hubs and services made available inside the hub. The user can have as many Virtual WAN per their need. In a Virtual WAN hub, there are multiple services like VPN, ExpressRoute etc. Each of these services is automatically deployed across **Availability Zones** *except* Azure Firewall, if the region supports Availability Zones. To upgrade an existing Azure Virtual WAN Hub to Secure Hub and have the Azure Firewall leveraging Availability Zones, PowerShell code must be used, as described in this article, see section below.
25+
> A Virtual WAN is a collection of hubs and services made available inside the hub. You can deploy as many Virtual WANs that you need. In a Virtual WAN hub, there are multiple services such as VPN, ExpressRoute, and so on. Each of these services is automatically deployed across **Availability Zones** *except* Azure Firewall, if the region supports Availability Zones. To upgrade an existing Azure Virtual WAN Hub to a Secure Hub and have the Azure Firewall use Availability Zones, you must use Azure PowerShell, as described later in this article.
2626
2727
## Prerequisites
2828

@@ -32,7 +32,7 @@ In this tutorial, you learn how to:
3232

3333
This tutorial requires that you run Azure PowerShell locally on PowerShell 7. To install PowerShell 7, see [Migrating from Windows PowerShell 5.1 to PowerShell 7](/powershell/scripting/install/migrating-from-windows-powershell-51-to-powershell-7?view=powershell-7&preserve-view=true).
3434

35-
- "Az.Network" module version must be 4.17.0 or higher.
35+
- "Az.Network" module version must be 4.17.0 or higher.
3636

3737
## Sign in to Azure
3838

@@ -86,7 +86,7 @@ $AzFW = New-AzFirewall -Name "azfw1" -ResourceGroupName $RG -Location $Location
8686
```
8787

8888
> [!NOTE]
89-
> The Firewall creation command below will **not** use Availability Zones. If you want to leverage this feature, an additional parameter **-Zone** is required. An example is provided in the upgrade section at the end of this article.
89+
> The following Firewall creation command does **not** use Availability Zones. If you want to use this feature, an additional parameter **-Zone** is required. An example is provided in the upgrade section at the end of this article.
9090
9191
Enabling logging from the Azure Firewall to Azure Monitor is optional, but in this example you use the Firewall logs to prove that traffic is traversing the firewall:
9292

@@ -285,9 +285,9 @@ Remove-AzResourceGroup -Name $RG
285285

286286
## Upgrade an existing Hub with Availability Zones
287287

288-
The procedure described above will permit a user to create a brand **new** Azure Virtual WAN Hub, and then immediately convert to a Secured Hub deploying Azure Firewall using a PowerShell script.
289-
A similar approach can be applied to an **existing** Azure Virtual WAN Hub: Firewall Manager can be also used for the conversion, but will not be possible to deploy Azure Firewall across Availability Zones without a script-based approach.
290-
The code snippet required to convert an existing Azure Virtual WAN Hub to a Secured Hub, using an Azure Firewall deployed across all three Availability Zones, is reported below:
288+
The previous procedure uses Azure PowerShell to create a **new** Azure Virtual WAN Hub, and then immediately converts it to a Secured Hub using Azure Firewall.
289+
A similar approach can be applied to an **existing** Azure Virtual WAN Hub. Firewall Manager can be also used for the conversion, but it isn't possible to deploy Azure Firewall across Availability Zones without a script-based approach.
290+
You can use the following code snippet to convert an existing Azure Virtual WAN Hub to a Secured Hub, using an Azure Firewall deployed across all three Availability Zones.
291291

292292
```azurepowershell
293293
# Variable definition
@@ -317,11 +317,11 @@ $AzFW = New-AzFirewall -Name $FirewallName -ResourceGroupName $RG -Location $Loc
317317
-SkuTier $FirewallTier `
318318
-Zone 1,2,3
319319
```
320-
Once executed the script above, Availability Zones should appear in the secured hub properties as shown in the screenshot below:
320+
After you run this script, Availability Zones should appear in the secured hub properties as shown in the following screenshot:
321321

322322
:::image type="content" source="./media/secure-cloud-network/vwan-firewall-hub-az-correct7.png" alt-text="Screenshot of Secured virtual hub availability zones" lightbox="./media/secure-cloud-network/vwan-firewall-hub-az-correct7.png":::
323323

324-
Once the Azure Firewall instance will be deployed, configuration procedure must be completed as described in the section *Deploy Azure Firewall and configure custom routing* above.
324+
After the Azure Firewall is deployed, a configuration procedure must be completed as described in the previous *Deploy Azure Firewall and configure custom routing* section.
325325

326326
## Next steps
327327

0 commit comments

Comments
 (0)