Actual IP address of Azure Function App is not listed in possibleOutboundIpAddresses

Zoltan Solya 21 Reputation points
2022-06-07T17:32:41.54+00:00

Just noted that my Function App's actual IP address is not in the range listed in possibleOutboundIpAddresses...is that normal?

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,264 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. MayankBargali-MSFT 68,476 Reputation points
    2022-06-08T02:39:55.717+00:00

    @Zoltan Solya Thanks for reaching out. Azure function uses app service environment, and the inbound and outbound IP addresses of an app can be different and can even change in certain situations. Therefore, the inbound IP address (actual IP address of azure function) can be different from outbound IP addresses (possibleOutboundIpAddresses) of the function app.

    Azure App Service is a multi-tenant service, except for App Service Environments. Apps that are not in an App Service environment (not in the Isolated tier) share network infrastructure with other apps. As a result, the inbound and outbound IP addresses of an app can be different, and can even change in certain situations.

    App Service Environments use dedicated network infrastructures, so apps running in an App Service environment get static, dedicated IP addresses both for inbound and outbound connections.

    To know more details, you can refer to Inbound and outbound IP addresses in Azure App Service and IP addresses in Azure Functions document.

    Please 'Accept as answer' and ‘Upvote’ if it helped so that it can help others in the community looking for help on similar topics.