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-side-by-side-migrate.md
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Learn how to migrate your App Service Environment v2 to App Service
4
4
author: seligj95
5
5
ms.topic: tutorial
6
6
ms.custom: devx-track-azurecli
7
-
ms.date: 3/19/2024
7
+
ms.date: 3/22/2024
8
8
ms.author: jordanselig
9
9
# zone_pivot_groups: app-service-cli-portal
10
10
---
@@ -101,7 +101,7 @@ az rest --method get --uri "${ASE_ID}?api-version=2022-03-01" --query properties
101
101
If the step is in progress, you get a status of `Migrating`. After you get a status of `Ready`, run the following command to view your new outbound IPs. If you don't see the new IPs immediately, wait a few minutes and try again.
102
102
103
103
```azurecli
104
-
az rest --method get --uri "${ASE_ID}/configurations/networking?api-version=2022-03-01"
104
+
az rest --method get --uri "${ASE_ID}/configurations/networking?api-version=2022-03-01 --query properties.windowsOutboundIpAddresses"
105
105
```
106
106
107
107
## 5. Update dependent resources with new outbound IPs
@@ -233,10 +233,18 @@ You have two App Service Environments at this stage in the migration process. Yo
233
233
> During the preview, the new inbound IP might be returned incorrectly due to a known bug. Open a support ticket to receive the correct IP addresses for your App Service Environment v3.
234
234
>
235
235
236
-
You can get the new inbound IP address for your new App Service Environment v3 by running the following command. It's your responsibility to make any necessary updates.
236
+
You can get the new inbound IP address for your new App Service Environment v3 by running the following command that corresponds to your App Service Environment load balancer type. It's your responsibility to make any necessary updates.
237
+
238
+
For ILB App Service Environments, get the private inbound IP address by running the following command:
239
+
240
+
```azurecli
241
+
az rest --method get --uri "${ASE_ID}/configurations/networking?api-version=2022-03-01" --query properties.internalInboundIpAddresses
242
+
```
243
+
244
+
For ELB App Service Environments, get the public inbound IP address by running the following command:
237
245
238
246
```azurecli
239
-
az rest --method get --uri "${ASE_ID}?api-version=2022-03-01" --query properties.networkingConfiguration
247
+
az rest --method get --uri "${ASE_ID}/configurations/networking?api-version=2022-03-01" --query properties.externalInboundIpAddresses
240
248
```
241
249
242
250
## 11. Redirect customer traffic and complete migration
0 commit comments