Skip to content

Commit ee0f26c

Browse files
Merge pull request #269954 from seligj95/patch-1
Update how-to-side-by-side-migrate.md
2 parents 73cf1a0 + 563ea50 commit ee0f26c

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

articles/app-service/environment/how-to-side-by-side-migrate.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to migrate your App Service Environment v2 to App Service
44
author: seligj95
55
ms.topic: tutorial
66
ms.custom: devx-track-azurecli
7-
ms.date: 3/19/2024
7+
ms.date: 3/22/2024
88
ms.author: jordanselig
99
# zone_pivot_groups: app-service-cli-portal
1010
---
@@ -101,7 +101,7 @@ az rest --method get --uri "${ASE_ID}?api-version=2022-03-01" --query properties
101101
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.
102102

103103
```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"
105105
```
106106

107107
## 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
233233
> 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.
234234
>
235235
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:
237245

238246
```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
240248
```
241249

242250
## 11. Redirect customer traffic and complete migration

0 commit comments

Comments
 (0)