Is there any way of triggering logic app on adding files or modification for all containers in a blob storage? I know that I can do that for specific one using When blob is added or modified trigger:
But is it doable for all containers using one logic app?
i do agree with @skin you cannot do for all containers in logic app workflow using when a blob is added or modified
:
But I would suggest you to use Event Grid Trigger In Logic app, where more than one event can be used as below:
Output:
Here I have used Consumption plan and it got triggerred in both containers, so you can use this.
Here in BlobUrl you can get the name of the blob.
Here more than one event type is used.
If you are using when a blob is added or modified
you can use @skin's comment to use app which is usefull.