Skip to content

Commit 9e0d50d

Browse files
authored
Add Azure Firewall SKU Upgrade Example (#20686)
example to upgrade firewall sku
1 parent 134b0bd commit 9e0d50d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/Network/Network/help/Set-AzFirewall.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,15 @@ $azFw | Set-AzFirewall
223223

224224
In this example, Enable Fat Flow Logging is enabled on the Firewall.
225225

226+
### 14: Upgrade Azure Firewall Standard to Premium
227+
```powershell
228+
$azfw = Get-AzFirewall -Name "AzureFirewall" -ResourceGroupName "rg"
229+
$azfw.Sku.Tier="Premium"
230+
Set-AzFirewall -AzureFirewall $azfw
231+
```
232+
233+
This example upgrades your existing Azure Firewall Standard to Premium Firewall. Upgrade process may take several minutes and does not require service down time. After upgrade is completed successfully you may replace your exiting standard policy with premium.
234+
226235
## PARAMETERS
227236

228237
### -AsJob

0 commit comments

Comments
 (0)