Azure function linux integration with vnet issue

Pankaj Joshi 286 Reputation points
2022-10-22T17:16:08.34+00:00

I have created Azure function plan(linux) and integrated with vnet but it's failed to run.

But when I remove vnet integration then it run fine.

Is it restricting any ip?
Could you please help what could be the issue and how to resolve.

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

1 answer

Sort by: Most helpful
  1. Maxim Sergeev 6,566 Reputation points Microsoft Employee
    2022-10-23T03:49:44.393+00:00

    Hi there,

    Quick answer - yes

    Virtual network integration gives your app access to resources in your virtual network, but it doesn't grant inbound private access to your app from the virtual network. Private site access refers to making an app accessible only from a private network, such as from within an Azure virtual network. Virtual network integration is used only to make outbound calls from your app into your virtual network. The virtual network integration feature behaves differently when it's used with virtual networks in the same region and with virtual networks in other regions.

    https://learn.microsoft.com/en-us/azure/app-service/overview-vnet-integration

    0 comments No comments