Skip to content

Commit b150c69

Browse files
authored
Merge pull request #79164 from vhorne/ag-qs-ps
typo in powershell cmdlet, and acro fixes
2 parents ff8803f + ff244b2 commit b150c69

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: Quickstart - Direct web traffic with Azure Application Gateway - Azure PowerShell | Microsoft Docs
3-
description: Learn how use Azure PowerShell to create an Azure Application Gateway that directs web traffic to virtual machines in a backend pool.
3+
description: Learn how to use Azure PowerShell to create an Azure Application Gateway that directs web traffic to virtual machines in a backend pool.
44
services: application-gateway
55
author: vhorne
66
ms.service: application-gateway
77
ms.topic: quickstart
8-
ms.date: 1/11/2019
8+
ms.date: 06/11/2019
99
ms.author: victorh
1010
ms.custom: mvc
1111
---
@@ -31,15 +31,15 @@ If you choose to install and use Azure PowerShell locally, this tutorial require
3131

3232
### Resource group
3333

34-
In Azure, you allocate related resources to a resource group. You can either use an existing resource group or create a new one. In this example, we will create a new resource group by using the [New-AzResourceGroup](/powershell/module/Az.resources/new-Azresourcegroup) cmdlet as follows:
34+
In Azure, you allocate related resources to a resource group. You can either use an existing resource group or create a new one. In this example, you'll create a new resource group by using the [New-AzResourceGroup](/powershell/module/Az.resources/new-Azresourcegroup) cmdlet as follows:
3535

3636
```azurepowershell-interactive
3737
New-AzResourceGroup -Name myResourceGroupAG -Location eastus
3838
```
3939

4040
### Required network resources
4141

42-
For Azure to communicate between the resources that you create, it needs a virtual network. The application gateway subnet can contain only application gateways. No other resources are allowed. You can either create a new subnet for Application Gateway or use an existing one. In this example, you create two subnets in this example: one for the application gateway, and another for the backend servers. You can configure the Frontend IP of the Application Gateway to be Public or Private as per your use case. In this example, we will choose a Public Frontend IP.
42+
For Azure to communicate between the resources that you create, it needs a virtual network. The application gateway subnet can contain only application gateways. No other resources are allowed. You can either create a new subnet for Application Gateway or use an existing one. In this example, you create two subnets in this example: one for the application gateway, and another for the backend servers. You can configure the Frontend IP of the Application Gateway to be Public or Private as per your use case. In this example, you'll choose a Public Frontend IP.
4343

4444
1. Create the subnet configurations by calling [New-AzVirtualNetworkSubnetConfig](/powershell/module/Az.network/new-Azvirtualnetworksubnetconfig).
4545
2. Create the virtual network with the subnet configurations by calling [New-AzVirtualNetwork](/powershell/module/Az.network/new-Azvirtualnetwork).
@@ -104,7 +104,7 @@ for ($i=1; $i -le 2; $i++)
104104
Add-AzVMNetworkInterface `
105105
-VM $vm `
106106
-Id $nic.Id
107-
Set-AzVMBootDiagnostics `
107+
Set-AzVMBootDiagnostic `
108108
-VM $vm `
109109
-Disable
110110
New-AzVM -ResourceGroupName myResourceGroupAG -Location EastUS -VM $vm
@@ -214,7 +214,7 @@ New-AzApplicationGateway `
214214
Although IIS isn't required to create the application gateway, you installed it in this quickstart to verify whether Azure successfully created the application gateway. Use IIS to test the application gateway:
215215

216216
1. Run [Get-AzPublicIPAddress](/powershell/module/Az.network/get-Azpublicipaddress) to get the public IP address of the application gateway.
217-
2. Copy and paste the public IP address into the address bar of your browser. When you refresh the browser, you should see the name of the virtual machine. A valid response verifies that the application gateway was successfully created and it is able to successfully connect with the backend.
217+
2. Copy and paste the public IP address into the address bar of your browser. When you refresh the browser, you should see the name of the virtual machine. A valid response verifies that the application gateway was successfully created and it can successfully connect with the backend.
218218

219219
```azurepowershell-interactive
220220
Get-AzPublicIPAddress -ResourceGroupName myResourceGroupAG -Name myAGPublicIPAddress

0 commit comments

Comments
 (0)