How to (re-)trigger an Azure function from Azure Storage Explorer?

298 Views Asked by At

I have an Azure Function triggered by blob: BlobTrigger("input/{name}"

From Microsoft Azure Storage Explorer, is there an easy way to (re-)trigger this function other than downloading the file, deleting the blob and uploading the file?

1

There are 1 best solutions below

0
RithwikBojja On

One of the ways is using event hub trigger to azure function, I have reproduced in my environment and followed below steps: Created an event subscription as below from Azure Blob storage:

enter image description here

So, whenever you do any of the events in azure storage explorer such as renamed, blob tier changed , etc this event grid subscription triggers the end point (i.e the azure function).

enter image description here

You can trigger function when you change blob tier, blob renamed,get SAS token for your container.