Search code examples
azureazure-functionsazure-eventgridazure-ase

Does EventGridTrigger wors in App service plan and ASE?


I have an Event Grid Trigger Azure function deployed to a function app which is in an ASE. I have created an event grid subscription with this function as an end point. The purpose of this subscription is to call this function once a blob file is created.

When I placed the file in the location, the event is supposed to call the function but I see the event is undelivered.

How can I resolve the issue?


Solution

  • I have created an eventgrid subscription that writes the event to a queue whenever a file is created in blob. I have modified exiting EvenGridTrigger function to QueueTrigger function. Both storage account and function app are in same vnet.