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/app-service/environment/how-to-migrate.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,11 +27,12 @@ For this guide, [install the Azure CLI](/cli/azure/install-azure-cli) or use the
27
27
28
28
## 1. Get your App Service Environment ID
29
29
30
-
Run these commands to get your App Service Environment ID and store it as an environment variable. Replace the placeholders for name and resource group with your values for the App Service Environment you want to migrate.
30
+
Run these commands to get your App Service Environment ID and store it as an environment variable. Replace the placeholders for name and resource groups with your values for the App Service Environment you want to migrate. "ASE_RG" and "VNET_RG" will be the same if your virtual network and App Service Environment are in the same resource group.
31
31
32
32
```azurecli
33
33
ASE_NAME=<Your-App-Service-Environment-name>
34
-
ASE_RG=<Your-Resource-Group>
34
+
ASE_RG=<Your-ASE-Resource-Group>
35
+
VNET_RG=<Your-VNet-Resource-Group>
35
36
ASE_ID=$(az appservice ase show --name $ASE_NAME --resource-group $ASE_RG --query id --output tsv)
36
37
```
37
38
@@ -71,10 +72,10 @@ Using the new IPs, update any of your resources or networking components to ensu
71
72
72
73
## 5. Delegate your App Service Environment subnet
73
74
74
-
App Service Environment v3 requires the subnet it's in to have a single delegation of `Microsoft.Web/hostingEnvironments`. Previous versions didn't require this delegation. You'll need to confirm your subnet is delegated properly and update the delegation if needed before migrating. You can update the delegation either by running the following command or by navigating to the subnet in the [Azure portal](https://portal.azure.com). If your virtual network/subnet is in a different resource group than your App Service Environment, change the value of that parameter in the below command accordingly.
75
+
App Service Environment v3 requires the subnet it's in to have a single delegation of `Microsoft.Web/hostingEnvironments`. Previous versions didn't require this delegation. You'll need to confirm your subnet is delegated properly and update the delegation if needed before migrating. You can update the delegation either by running the following command or by navigating to the subnet in the [Azure portal](https://portal.azure.com).
0 commit comments