Skip to content

Commit cfcf002

Browse files
Update tutorial-url-redirect-powershell.md
took out v2
1 parent d6fb630 commit cfcf002

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

articles/application-gateway/tutorial-url-redirect-powershell.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.custom: devx-track-azurepowershell
1414

1515
# Create an application gateway with URL path-based redirection using Azure PowerShell
1616

17-
You can use Azure PowerShell to configure advanced [URL-based routing rules](./url-route-overview.md) when you create an [application gateway](./overview.md). This tutorial demonstrates implementing URL path-based redirection patterns using Application Gateway v2 Standard_v2 SKU, which provides enhanced performance, auto-scaling capabilities, and zone redundancy. You'll create backend pools using [virtual machine scale sets](/azure/virtual-machine-scale-sets/overview) and implement sophisticated URL routing rules with redirection logic that automatically routes web traffic to the appropriate backend pool based on URL path patterns.
17+
You can use Azure PowerShell to configure advanced [URL-based routing rules](./url-route-overview.md) when you create an [application gateway](./overview.md).
1818

1919
This tutorial covers production-ready configurations including security best practices, performance optimization, and monitoring setup.
2020

@@ -46,9 +46,6 @@ Before you begin this tutorial, ensure you have:
4646

4747
If you choose to install and use PowerShell locally, this tutorial requires the Azure PowerShell module version 5.4.1 or later. To find the version, run `Get-Module -ListAvailable Az`. If you need to upgrade, see [Install Azure PowerShell module](/powershell/azure/install-azure-powershell). If you're running PowerShell locally, you also need to run `Connect-AzAccount` to create a connection with Azure.
4848

49-
> [!IMPORTANT]
50-
> This tutorial uses Application Gateway v2 (Standard_v2 SKU) which provides better performance, security features, and auto-scaling capabilities compared to v1. Ensure your subscription has sufficient quota for the resources that will be created.
51-
5249
## Create a resource group
5350

5451
A resource group is a logical container into which Azure resources are deployed and managed. Create an Azure resource group using [New-AzResourceGroup](/powershell/module/az.resources/new-azresourcegroup).
@@ -69,8 +66,6 @@ Write-Output "Resource group '$resourceGroupName' created successfully in '$loca
6966

7067
Create the subnet configurations for *myBackendSubnet* and *myAGSubnet* using [New-AzVirtualNetworkSubnetConfig](/powershell/module/az.network/new-azvirtualnetworksubnetconfig). The Application Gateway requires a dedicated subnet with minimum /24 CIDR for proper operation and future scaling. Create the virtual network named *myVNet* using [New-AzVirtualNetwork](/powershell/module/az.network/new-azvirtualnetwork) with the subnet configurations. Finally, create the public IP address with Standard SKU and static allocation for improved security and performance using [New-AzPublicIpAddress](/powershell/module/az.network/new-azpublicipaddress).
7168

72-
> [!NOTE]
73-
> Application Gateway v2 requires a Standard SKU public IP address. Dynamic allocation is not supported with Standard_v2 SKU.
7469

7570
```azurepowershell-interactive
7671
# Create backend subnet configuration with appropriate CIDR for scale sets

0 commit comments

Comments
 (0)