You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/frontdoor/post-migration-dev-ops-experience.md
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,40 +36,40 @@ After migration, all classic AFD resources are migrated to AFD Standard and Prem
36
36
After migration, all classic AFD resources are migrated to AFD Standard and Premium.
37
37
38
38
-**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).
42
42
-**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.
43
43
-**Validate**: Remove or archive references to the classic Front Door template to avoid confusion.
44
44
45
45
## Bicep
46
46
47
47
### Prerequisites
48
48
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).
50
50
51
51
### Steps
52
52
53
53
After migration, all classic AFD resources are migrated to AFD Standard and Premium.
54
54
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).
56
56
-**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.).
57
57
-**Test** a deployment (for example, `az deployment group create`) to verify provisioning of AFD Standard/Premium.
58
58
59
59
## PowerShell
60
60
61
61
### Prerequisites
62
62
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).
64
64
65
65
### Steps
66
66
67
67
-**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).
68
68
-**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.
69
69
- 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.
73
73
-**Test** your script (locally or in a test pipeline) to verify creation or updates to AFD Standard/Premium, then commit changes to your pipeline.
74
74
75
75
## CLI
@@ -81,14 +81,14 @@ Make sure you have the latest Azure PowerShell Az modules installed (Az.Cdn modu
81
81
82
82
### Steps
83
83
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).
85
85
-**Replace or remove Front Door Classic CLI usage**:
Copy file name to clipboardExpand all lines: articles/frontdoor/standard-premium/how-to-enable-private-link-web-app-powershell.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ This article guides you through how to configure Azure Front Door Premium tier t
19
19
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
20
20
- Azure PowerShell installed locally or Azure Cloud Shell
21
21
- 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).
23
23
24
24
> [!NOTE]
25
25
> 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