Skip to content

Commit 6181fcf

Browse files
Merge pull request #270820 from seligj95/patch-2
ase sxs migration fix inbound ip commands
2 parents b5221b6 + 9b71105 commit 6181fcf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 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/28/2024
7+
ms.date: 4/1/2024
88
ms.author: jordanselig
99
---
1010
# Use the side-by-side migration feature to migrate App Service Environment v2 to App Service Environment v3 (Preview)
@@ -243,13 +243,13 @@ You can get the new inbound IP address for your new App Service Environment v3 b
243243
For ILB App Service Environments, get the private inbound IP address by running the following command:
244244

245245
```azurecli
246-
az rest --method get --uri "${ASE_ID}/configurations/networking?api-version=2022-03-01" --query properties.internalInboundIpAddresses
246+
az rest --method get --uri "${ASE_ID}?api-version=2022-03-01" --query properties.networkingConfiguration.internalInboundIpAddresses
247247
```
248248

249249
For ELB App Service Environments, get the public inbound IP address by running the following command:
250250

251251
```azurecli
252-
az rest --method get --uri "${ASE_ID}/configurations/networking?api-version=2022-03-01" --query properties.externalInboundIpAddresses
252+
az rest --method get --uri "${ASE_ID}?api-version=2022-03-01" --query properties.networkingConfiguration.externalInboundIpAddresses
253253
```
254254

255255
## 11. Redirect customer traffic and complete migration

0 commit comments

Comments
 (0)