Skip to content

Commit 36bd7dc

Browse files
Merge pull request #302641 from reyjordi/autoscale-ps
Azure-Doc-a-thon
2 parents 55ac863 + fe3cf0e commit 36bd7dc

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

articles/application-gateway/tutorial-autoscale-ps.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.custom: mvc, devx-track-azurepowershell
1313
---
1414
# Tutorial: Create an application gateway that improves web application access
1515

16-
If you're an IT admin concerned with improving web application access, you can optimize your application gateway to scale based on customer demand and span multiple availability zones. This tutorial helps you configure Azure Application Gateway features that do that: autoscaling, zone redundancy, and reserved VIPs (static IP). You'll use Azure PowerShell cmdlets and the Azure Resource Manager deployment model to solve the problem.
16+
If you're an IT admin concerned with improving web application access, you can optimize your application gateway to scale based on customer demand and span multiple availability zones. This tutorial helps you configure Azure Application Gateway v2 features that do that: autoscaling, zone redundancy, and static VIPs. You'll use Azure PowerShell cmdlets and the Azure Resource Manager deployment model to solve the problem.
1717

1818
In this tutorial, you learn how to:
1919

@@ -30,7 +30,8 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
3030

3131
## Prerequisites
3232

33-
[!INCLUDE [updated-for-az](~/reusable-content/ce-skilling/azure/includes/updated-for-az.md)]
33+
> [!NOTE]
34+
> We recommend that you use the Azure Az PowerShell module to interact with Azure. To get started, see [Install Azure PowerShell](/powershell/azure/install-azure-powershell). To learn how to migrate to the Az PowerShell module, see [Migrate Azure PowerShell from AzureRM to Az](/powershell/azure/migrate-from-azurerm-to-az).
3435
3536
This tutorial requires that you run an administrative Azure PowerShell session locally. You must have Azure PowerShell module version 1.0.0 or later installed. Run `Get-Module -ListAvailable Az` to find the version. If you need to upgrade, see [Install Azure PowerShell module](/powershell/azure/install-azure-powershell). After you verify the PowerShell version, run `Connect-AzAccount` to create a connection with Azure.
3637

@@ -118,7 +119,7 @@ $gwSubnet = Get-AzVirtualNetworkSubnetConfig -Name "AppGwSubnet" -VirtualNetwork
118119

119120
## Create web apps
120121

121-
Configure two web apps for the backend pool. Replace *\<site1-name>* and *\<site-2-name>* with unique names in the `azurewebsites.net` domain.
122+
Configure two web apps for the backend pool. Replace *\<site1-name>* and *\<site2-name>* with unique names in the `azurewebsites.net` domain.
122123

123124
```azurepowershell
124125
New-AzAppServicePlan -ResourceGroupName $rg -Name "ASP-01" -Location $location -Tier Basic `
@@ -135,7 +136,7 @@ Replace your two web app FQDNs (for example: `mywebapp.azurewebsites.net`) in th
135136

136137
```azurepowershell
137138
$ipconfig = New-AzApplicationGatewayIPConfiguration -Name "IPConfig" -Subnet $gwSubnet
138-
$fip = New-AzApplicationGatewayFrontendIPConfig -Name "FrontendIPCOnfig" -PublicIPAddress $publicip
139+
$fip = New-AzApplicationGatewayFrontendIPConfig -Name "FrontendIPConfig" -PublicIPAddress $publicip
139140
$pool = New-AzApplicationGatewayBackendAddressPool -Name "Pool1" `
140141
-BackendIPAddresses <your first web app FQDN>, <your second web app FQDN>
141142
$fp01 = New-AzApplicationGatewayFrontendPort -Name "SSLPort" -Port 443

0 commit comments

Comments
 (0)