Skip to content

Commit 53e3794

Browse files
committed
fixed variable
1 parent 937d941 commit 53e3794

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/virtual-network/quick-create-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ New-AzResourceGroup @rg
4545
Create a DDoS Protection plan with [New-AzDdosProtectionPlan](/powershell/module/az.network/new-azddosprotectionplan) to associate with the virtual network. This example creates a DDoS Protection plan named **myDDoSPlan** in the **EastUS** location:
4646

4747
```azurepowershell-interactive
48-
$ddosplan = @{
48+
$plan = @{
4949
Name = 'myDDoSPlan'
5050
ResourceGroupName = 'CreateVNetQS-rg'
5151
Location = 'EastUS'
5252
}
53-
New-AzDdosProtectionPlan @ddosplan
53+
$ddosplan = New-AzDdosProtectionPlan @plan
5454
```
5555

5656
### Create the virtual network

0 commit comments

Comments
 (0)