Skip to content

Commit f4956b3

Browse files
delta edits
1 parent 040bd88 commit f4956b3

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

articles/frontdoor/create-front-door-template.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: 'Quickstart: Create an Azure Front Door Service by using an Azure Resource Manager template (ARM template)'
3-
description: This quickstart describes how to create an Azure Front Door Service by using Azure Resource Manager template (ARM template).
2+
title: 'Quickstart: Create an Azure Front Door Standard/Premium by using an Azure Resource Manager template (ARM template)'
3+
description: This quickstart describes how to create an Azure Front Door Standard/Premium by using Azure Resource Manager template (ARM template).
44
services: front-door
55
documentationcenter:
66
author: duongau
@@ -32,7 +32,7 @@ If your environment meets the prerequisites and you're familiar with using ARM t
3232

3333
## Review the template
3434

35-
The template used in this quickstart is from [Azure Quickstart Templates](https://azure.microsoft.com/en-gb/resources/templates/front-door-standard-premium-app-service-public/).
35+
The template used in this quickstart is from [Azure Quickstart Templates](https://azure.microsoft.com/resources/templates/front-door-standard-premium-app-service-public/).
3636

3737
In this quickstart, you'll create a Front Door Standard/Premium, an App Service, and configure the App Service to validate that traffic has come through the Front Door origin.
3838

@@ -50,26 +50,26 @@ One Azure resource is defined in the template:
5050
> If you want to deploy Azure Front Door Premium instead of Standard substitute the value of the sku parameter with `Premium_AzureFrontDoor`. For detailed comparison, view [Azure Front Door tier comparison](standard-premium/tier-comparison.md).
5151
5252

53-
```azurepowershell-interactive
54-
$projectName = Read-Host -Prompt "Enter a project name that is used for generating resource names"
55-
$location = Read-Host -Prompt "Enter the location (i.e. centralus)"
56-
$templateUri = "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.cdn/front-door-standard-premium-app-service-public/azuredeploy.json"
53+
```azurepowershell-interactive
54+
$projectName = Read-Host -Prompt "Enter a project name that is used for generating resource names"
55+
$location = Read-Host -Prompt "Enter the location (i.e. centralus)"
56+
$templateUri = "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.cdn/front-door-standard-premium-app-service-public/azuredeploy.json"
5757
58-
$resourceGroupName = "${projectName}rg"
58+
$resourceGroupName = "${projectName}rg"
5959
60-
New-AzResourceGroup -Name $resourceGroupName -Location "$location"
61-
New-AzResourceGroupDeployment -ResourceGroupName $resourceGroupName -TemplateUri $templateUri -frontDoorSkuName Standard_AzureFrontDoor
60+
New-AzResourceGroup -Name $resourceGroupName -Location "$location"
61+
New-AzResourceGroupDeployment -ResourceGroupName $resourceGroupName -TemplateUri $templateUri -frontDoorSkuName Standard_AzureFrontDoor
6262
63-
Read-Host -Prompt "Press [ENTER] to continue ..."
64-
```
63+
Read-Host -Prompt "Press [ENTER] to continue ..."
64+
```
6565

66-
Wait until you see the prompt from the console.
66+
Wait until you see the prompt from the console.
6767

68-
1. Select **Copy** from the previous code block to copy the PowerShell script.
68+
2. Select **Copy** from the previous code block to copy the PowerShell script.
6969

70-
1. Right-click the shell console pane and then select **Paste**.
70+
3. Right-click the shell console pane and then select **Paste**.
7171

72-
1. Enter the values.
72+
4. Enter the values.
7373

7474
The template deployment creates a Front Door with a web app as origin
7575

0 commit comments

Comments
 (0)