Skip to content

Commit 3c23ebf

Browse files
authored
Merge pull request #157935 from mumian/0510-quickstarts-cdn
update the quickstart template urls
2 parents 3533ddb + 0169405 commit 3c23ebf

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/cdn/create-profile-endpoint-template.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.tgt_pltfrm: na
1010
ms.devlang: na
1111
ms.topic: quickstart
1212
ms.custom: subject-armqs
13-
ms.date: 06/25/2020
13+
ms.date: 05/10/2021
1414
ms.author: allensu
1515

1616
---
@@ -23,7 +23,7 @@ Get started with Azure Content Delivery Network (CDN) by using an Azure Resource
2323

2424
If your environment meets the prerequisites and you're familiar with using ARM templates, select the **Deploy to Azure** button. The template will open in the Azure portal.
2525

26-
[![Deploy to Azure](../media/template-deployments/deploy-to-azure.svg)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2F101-cdn-with-custom-origin%2Fazuredeploy.json)
26+
[![Deploy to Azure](../media/template-deployments/deploy-to-azure.svg)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.cdn%2Fcdn-with-custom-origin%2Fazuredeploy.json)
2727

2828
## Prerequisites
2929

@@ -38,7 +38,7 @@ This template is configured to create a:
3838
* Profile
3939
* Endpoint
4040

41-
:::code language="json" source="~/quickstart-templates/101-cdn-with-custom-origin/azuredeploy.json":::
41+
:::code language="json" source="~/quickstart-templates/quickstarts/microsoft.cdn/cdn-with-custom-origin/azuredeploy.json":::
4242

4343
One Azure resource is defined in the template:
4444

@@ -51,7 +51,7 @@ One Azure resource is defined in the template:
5151
```azurecli-interactive
5252
read -p "Enter the location (i.e. eastus): " location
5353
resourceGroupName="myResourceGroupCDN"
54-
templateUri="https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-cdn-with-custom-origin/azuredeploy.json"
54+
templateUri="https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.cdn/cdn-with-custom-origin/azuredeploy.json"
5555
5656
az group create \
5757
--name $resourceGroupName \
@@ -66,7 +66,7 @@ az deployment group create \
6666

6767
```azurepowershell-interactive
6868
$location = Read-Host -Prompt "Enter the location (i.e. eastus)"
69-
$templateUri = "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-cdn-with-custom-origin/azuredeploy.json"
69+
$templateUri = "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.cdn/cdn-with-custom-origin/azuredeploy.json"
7070
7171
$resourceGroupName = "myResourceGroupCDN"
7272
@@ -76,7 +76,7 @@ New-AzResourceGroupDeployment -ResourceGroupName $resourceGroupName -TemplateUri
7676

7777
### Portal
7878

79-
[![Deploy to Azure](../media/template-deployments/deploy-to-azure.svg)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2F101-cdn-with-custom-origin%2Fazuredeploy.json)
79+
[![Deploy to Azure](../media/template-deployments/deploy-to-azure.svg)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2Fazure-quickstart-templates%2Fmaster%2Fquickstarts%2Fmicrosoft.cdn%2Fcdn-with-custom-origin%2Fazuredeploy.json)
8080

8181
## Review deployed resources
8282

@@ -96,7 +96,7 @@ New-AzResourceGroupDeployment -ResourceGroupName $resourceGroupName -TemplateUri
9696

9797
When no longer needed, you can use the [az group delete](/cli/azure/group#az_group_delete) command to remove the resource group and all resources contained within.
9898

99-
```azurecli-interactive
99+
```azurecli-interactive
100100
az group delete \
101101
--name myResourceGroupCDN
102102
```
@@ -105,7 +105,7 @@ When no longer needed, you can use the [az group delete](/cli/azure/group#az_gro
105105

106106
When no longer needed, you can use the [Remove-AzResourceGroup](/powershell/module/az.resources/remove-azresourcegroup) command to remove the resource group and all resources contained within.
107107

108-
```azurepowershell-interactive
108+
```azurepowershell-interactive
109109
Remove-AzResourceGroup -Name myResourceGroupCDN
110110
```
111111

0 commit comments

Comments
 (0)