You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/application-gateway/quick-create-powershell.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
---
2
2
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.
4
4
services: application-gateway
5
5
author: vhorne
6
6
ms.service: application-gateway
7
7
ms.topic: quickstart
8
-
ms.date: 1/11/2019
8
+
ms.date: 06/11/2019
9
9
ms.author: victorh
10
10
ms.custom: mvc
11
11
---
@@ -31,15 +31,15 @@ If you choose to install and use Azure PowerShell locally, this tutorial require
31
31
32
32
### Resource group
33
33
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:
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.
43
43
44
44
1. Create the subnet configurations by calling [New-AzVirtualNetworkSubnetConfig](/powershell/module/Az.network/new-Azvirtualnetworksubnetconfig).
45
45
2. Create the virtual network with the subnet configurations by calling [New-AzVirtualNetwork](/powershell/module/Az.network/new-Azvirtualnetwork).
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:
215
215
216
216
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.
0 commit comments