Current outbound IP address of App Service

PATRICIA FUENTES 51 Reputation points
2022-03-10T15:41:18.327+00:00

Hi team,

is any way to know which of all outbound ip addresses is currently being used in runtime in an app service?

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,359 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. ShamirC 1 Reputation point
    2022-03-10T15:54:54.32+00:00

    You should be able to grab all the current outbound addresses for your App Service via command line or the portal. See https://video2.skills-academy.com/en-us/azure/app-service/overview-inbound-outbound-ips#find-outbound-ips for more information.


  2. Vivek Kosare 1 Reputation point
    2022-03-11T16:44:00.617+00:00

    You can check the list of outbound IP addresses in the Properties section of Azure App service on Azure portal (where your app service is published)

    OR you can use this azure cli command : az webapp show --resource-group <group_name> --name <app_name> --query outboundIpAddresses --output tsv

    0 comments No comments