Skip to content

Commit 1b6e5b7

Browse files
committed
warning related changes
1 parent e6451b6 commit 1b6e5b7

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

articles/frontdoor/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
- name: Custom domain
179179
href: migrate-cdn-to-front-door.md
180180
- name: AFD/CDN Classic migration FAQ
181-
href: afd-cdn-classic-migration-faq.md
181+
href: migration-faq.md
182182
- name: Post migration Dev-Ops experience
183183
href: post-migration-dev-ops-experience.md
184184
- name: Upgrades

articles/frontdoor/post-migration-dev-ops-experience.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -36,40 +36,40 @@ After migration, all classic AFD resources are migrated to AFD Standard and Prem
3636
After migration, all classic AFD resources are migrated to AFD Standard and Premium.
3737

3838
- **Export ARM templates for Front Door Standard/Premium** using any of the following:
39-
- **Azure portal**: [Export template in Azure portal](https://learn.microsoft.com/azure/azure-resource-manager/templates/export-template-portal).
40-
- **Azure CLI**: [Export template in Azure CLI](https://learn.microsoft.com/azure/azure-resource-manager/templates/export-template-cli).
41-
- **Azure PowerShell**: [Export template in Azure PowerShell](https://learn.microsoft.com/azure/azure-resource-manager/templates/export-template-powershell).
39+
- **Azure portal**: [Export template in Azure portal](../azure-resource-manager/templates/export-template-portal.md).
40+
- **Azure CLI**: [Export template in Azure CLI](../azure-resource-manager/templates/export-template-cli.md).
41+
- **Azure PowerShell**: [Export template in Azure PowerShell](../azure-resource-manager/templates/export-template-powershell.md).
4242
- **Update ARM templates in your pipeline** to use the new Front Door Standard/Premium template instead of the Front Door (Classic) template. In Azure DevOps or GitHub Actions, update the template path and parameters in your deployment step, then deploy the new template.
4343
- **Validate**: Remove or archive references to the classic Front Door template to avoid confusion.
4444

4545
## Bicep
4646

4747
### Prerequisites
4848

49-
- Install the Bicep CLI and tools. See [Set up Bicep development and deployment environments](https://learn.microsoft.com/azure/azure-resource-manager/bicep/install).
49+
- Install the Bicep CLI and tools. See [Set up Bicep development and deployment environments](../azure-resource-manager/bicep/install.md).
5050

5151
### Steps
5252

5353
After migration, all classic AFD resources are migrated to AFD Standard and Premium.
5454

55-
- **Generate a Bicep template for Front Door Standard/Premium** by decompiling an exported ARM template. See [Decompile ARM template JSON to Bicep](https://learn.microsoft.com/azure/azure-resource-manager/bicep/decompile?tabs=azure-cli).
55+
- **Generate a Bicep template for Front Door Standard/Premium** by decompiling an exported ARM template. See [Decompile ARM template JSON to Bicep](../azure-resource-manager/bicep/decompile.md?tabs=azure-cli).
5656
- **Update Bicep files in your pipeline**: Replace Front Door Classic definitions with Standard/Premium. This may include updating resource types such as [`Microsoft.Cdn/profiles`](https://learn.microsoft.com/azure/templates/microsoft.cdn/profiles?pivots=deployment-language-bicep) and child resources (endpoints, routes, etc.).
5757
- **Test** a deployment (for example, `az deployment group create`) to verify provisioning of AFD Standard/Premium.
5858

5959
## PowerShell
6060

6161
### Prerequisites
6262

63-
Make sure you have the latest Azure PowerShell Az modules installed (Az.Cdn module version that supports AFD Standard/Premium). See [Install Azure PowerShell](https://learn.microsoft.com/powershell/azure/install-azps-windows?view=azps-14.2.0&tabs=powershell&pivots=windows-psgallery).
63+
Make sure you have the latest Azure PowerShell Az modules installed (Az.Cdn module version that supports AFD Standard/Premium). See [Install Azure PowerShell](https://learn.microsoft.com/powershell/azure/install-azps-windows).
6464

6565
### Steps
6666

6767
- **Update PowerShell deployment scripts**: Replace any Front Door (Classic) cmdlets with AFD Standard/Premium cmdlets. For examples, see the [Azure Front Door PowerShell quickstart](create-front-door-powershell.md).
6868
- **Incorporate new configuration and remove old references**: Ensure scripts configure required components (origins, origin groups, routes, rules, etc.). Remove or comment commands that manage Classic Front Door.
6969
- Command group mapping:
70-
- AzFrontDoorCdn commands under the [Az.Cdn module](https://learn.microsoft.com/powershell/module/az.cdn/?view=azps-14.2.0) are for AFD Standard/Premium.
71-
- AzCdn commands under the [Az.Cdn module](https://learn.microsoft.com/powershell/module/az.cdn/?view=azps-14.2.0) are for CDN Classic.
72-
- The [Az.FrontDoor module](https://learn.microsoft.com/powershell/module/az.frontdoor/?view=azps-14.2.0) is for AFD Classic.
70+
- AzFrontDoorCdn commands under the [Az.Cdn module](https://learn.microsoft.com/powershell/module/az.cdn/) are for AFD Standard/Premium.
71+
- AzCdn commands under the [Az.Cdn module](https://learn.microsoft.com/powershell/module/az.cdn/) are for CDN Classic.
72+
- The [Az.FrontDoor module](https://learn.microsoft.com/powershell/module/az.frontdoor/) is for AFD Classic.
7373
- **Test** your script (locally or in a test pipeline) to verify creation or updates to AFD Standard/Premium, then commit changes to your pipeline.
7474

7575
## CLI
@@ -81,14 +81,14 @@ Make sure you have the latest Azure PowerShell Az modules installed (Az.Cdn modu
8181

8282
### Steps
8383

84-
- **Update CLI commands in scripts**: Use the Azure Front Door Standard/Premium command group: [`az afd`](https://learn.microsoft.com/cli/azure/afd?view=azure-cli-latest).
84+
- **Update CLI commands in scripts**: Use the Azure Front Door Standard/Premium command group: [`az afd`](https://learn.microsoft.com/cli/azure/afd).
8585
- **Replace or remove Front Door Classic CLI usage**:
86-
- CDN Classic commands: [`az cdn`](https://learn.microsoft.com/cli/azure/cdn?view=azure-cli-latest)
87-
- AFD Classic commands: [`az network front-door`](https://learn.microsoft.com/cli/azure/network/front-door?view=azure-cli-latest)
86+
- CDN Classic commands: [`az cdn`](https://learn.microsoft.com/cli/azure/cdn)
87+
- AFD Classic commands: [`az network front-door`](https://learn.microsoft.com/cli/azure/network/front-door)
8888
- **Validate** the updated CLI script manually or in a staging pipeline to ensure successful configuration of Front Door Standard/Premium.
8989

9090
## Next step
9191

92-
* For more questions, refer to the [AFD/CDN Classic Migration FAQ](afd-cdn-classic-migration-faq.md).
92+
* For more questions, refer to the [AFD/CDN Classic Migration FAQ](migration-faq.md).
9393
* Understand the [settings mapping between Azure Front Door tiers](tier-mapping.md).
9494

articles/frontdoor/standard-premium/how-to-enable-private-link-web-app-powershell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This article guides you through how to configure Azure Front Door Premium tier t
1919
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
2020
- Azure PowerShell installed locally or Azure Cloud Shell
2121
- Azure FrontDoor Premium profile, endpoint, and origin group. For more information on how to create an Azure Front Door profile, see [Create a Front Door - PowerShell](../create-front-door-powershell.md).
22-
- Azure App Service (WebApp) instance. For more information on how to create an Azure App Service, see [Create an App Service - PowerShell](../create-app-service-plan-powershell.md).
22+
- Azure App Service (WebApp) instance. For more information on how to create an Azure App Service, see [Create an App Service - PowerShell](../../app-service/quickstart-dotnetcore.md?tabs=net80&pivots=development-environment-ps).
2323

2424
> [!NOTE]
2525
> Private endpoints requires your App Service plan to meet some requirements. For more information, see [Using Private Endpoints for Azure Web App](../../app-service/networking/private-endpoint.md).

0 commit comments

Comments
 (0)