2

I am trying to create a simple scenario using Azure serverless: ingest a file "dropped" into a "folder".

My current thinking is to use a Blob Storage and link it to a Function using an Event Subscription.

I am pretty much trying to follow this tutorial: https://mobilefirstcloudfirst.net/2017/12/connecting-azure-blob-storage-events-using-event-grid/

However I am getting the following error notification when trying to create an event subscription:

"Deployment has failed with the following error: undefined"

enter image description here

I am kind of not sure what to do with the error information like "undefined". Is it an Azure bug or is it an output of something?

Den
  • 1,827
  • 3
  • 25
  • 46

1 Answers1

1

My current thinking is to use a Blob Storage and link it to a Function using an Event Subscription.

Based on my understanding, you could create the Azure Event Grid Trigger function to create event subscription, for more information please refer to Create and route custom events with the Azure portal and Event Grid.

Before that you need to create the Azure Blob storage in the Event Grid supported region and choose Topic type Storage Account. For more details, please refer to the screenshot.

enter image description here

Note: If you want to create it with Azure CLI or Powershell, we also could get the tutorial from Azure official document

Tom Sun - MSFT
  • 24,161
  • 3
  • 30
  • 47