Azure · Integration
Azure Event Grid
Pub/Sub for Azure + custom events.
Official docsOverview
Event Grid routes events from Azure services or custom topics to handlers like Functions, Logic Apps, webhooks.
When to use it
- React to blob uploads
- Resource lifecycle automation
Setup
- Create system or custom topic.
- Add subscriptions with event filters.
How to use
Subscribe Function
az eventgrid event-subscription create --name on-blob \
--source-resource-id <storage-id> \
--endpoint-type azurefunction --endpoint <fn-id>QA use cases
- Trigger report-parser Function automatically when a new report is uploaded.
