Azure function run time error

KRISHNA, CHOPPADANDI VAMSHI 0 Reputation points
2023-03-29T23:23:31.52+00:00

We have appservice which is ple enabled , recently we are migrated our agent to private subnet, after that only we are facing the issue(azure function runtime error) .Our storage account also public only, earlier every thing works fine after this migration only we are facing the issue, we added the nsg rule to allow the traffic from this subnets. One more thing when we hit the appservice url , we observed in activity log web apps sync trigger failed

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,567 questions
Azure Storage Accounts
Azure Storage Accounts
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
2,871 questions
Azure Container Apps
Azure Container Apps
An Azure service that provides a general-purpose, serverless container platform.
325 questions
Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,269 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Konstantinos Passadis 17,381 Reputation points MVP
    2023-03-29T23:35:01.18+00:00

    Hello @KRISHNA, CHOPPADANDI VAMSHI

    For Private Endpoint on Azure APP Service You must set up a private DNS server or an Azure DNS private zone. For tests, you can modify the host entry of your test machine. The DNS zone that you need to create is: privatelink.azurewebsites.net. Register the record for your app with a A record and the private endpoint IP.

    Have you followed the steps to create the Private Zone ?

    Aso here are some usefull limitations - info :

    • When you use Azure Function in Elastic Premium plan with private endpoint, to run or execute the function in Azure portal, you must have direct network access or you receive an HTTP 403 error. In other words, your browser must be able to reach the private endpoint to execute the function from the Azure portal.
    • You can connect up to 100 private endpoints to a particular app.
    • Remote Debugging functionality isn't available through the private endpoint. The recommendation is to deploy the code to a slot and remote debug it there.
    • FTP access is provided through the inbound public IP address. Private endpoint doesn't support FTP access to the app.
    • IP-Based SSL isn't supported with private endpoints.
    • Apps that you configure with private endpoints are only accessible through private endpoint from clients in subnets that are configured with the Microsoft.Web service endpoint.

    In case this answer helped you resolve the issue kindly mark it as Accepted ! Otherwise provide some onf on the Architecture and the community will follow up to assist !

    have a nice day !


  2. KRISHNA, CHOPPADANDI VAMSHI 0 Reputation points
    2023-04-03T17:23:01.74+00:00

    Yeah ,we got the issue.issuw with the function app package we need to upgrade the package It started working.

    0 comments No comments