Skip to content

Commit 2c25b4d

Browse files
authored
Merge pull request #111535 from vhorne/ag-qs
Remove address lines from backend pool section
2 parents b82b10a + abac1f0 commit 2c25b4d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

articles/application-gateway/quick-create-powershell.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: application-gateway
66
author: vhorne
77
ms.service: application-gateway
88
ms.topic: quickstart
9-
ms.date: 03/05/2020
9+
ms.date: 04/15/2020
1010
ms.author: victorh
1111
ms.custom: mvc
1212
---
@@ -94,12 +94,10 @@ $frontendport = New-AzApplicationGatewayFrontendPort `
9494

9595
### Create the backend pool
9696

97-
1. Use `New-AzApplicationGatewayBackendAddressPool` to create the backend pool for the application gateway. The backend pool will be empty for now and while you create the backend server NICs in the next section, you will add them to the backend pool.
97+
1. Use `New-AzApplicationGatewayBackendAddressPool` to create the backend pool for the application gateway. The backend pool will be empty for now. When you create the backend server NICs in the next section, you will add them to the backend pool.
9898
2. Configure the settings for the backend pool with `New-AzApplicationGatewayBackendHttpSetting`.
9999

100100
```azurepowershell-interactive
101-
$address1 = Get-AzNetworkInterface -ResourceGroupName myResourceGroupAG -Name myNic1
102-
$address2 = Get-AzNetworkInterface -ResourceGroupName myResourceGroupAG -Name myNic2
103101
$backendPool = New-AzApplicationGatewayBackendAddressPool `
104102
-Name myAGBackendPool
105103
$poolSettings = New-AzApplicationGatewayBackendHttpSetting `

0 commit comments

Comments
 (0)