azure-event-grid

Create Azure Event Grid topics and subscriptions with filtering and dead-lettering.

3|1|Updated Feb 2, 2026
One-click install
npx skills add https://github.com/HouseGarofalo/claude-code-base --skill azure-event-grid-housegarofalo
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: azure-event-grid
Source: https://github.com/HouseGarofalo/claude-code-base/tree/main/.claude/skills/azure-event-grid
Command: npx skills add https://github.com/HouseGarofalo/claude-code-base --skill azure-event-grid-housegarofalo

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill simplifies the creation and management of event-driven architectures on Azure by providing tools to route events between different services reliably.

Core Features & Use Cases

  • Event Routing: Configure topics and subscriptions to direct events to appropriate handlers.
  • Serverless Triggers: Easily integrate with Azure Functions and other serverless compute.
  • Use Case: Automatically trigger a data processing pipeline whenever a new file is uploaded to Azure Blob Storage by subscribing to storage events.

Quick Start

Use the azure-event-grid skill to create a custom topic named 'my-app-events' in the 'my-resource-group'.

Frequently Asked Questions about azure-event-grid

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I route events from Azure Blob Storage to trigger an Azure Function?

You can route events by creating an Event Grid subscription on a system topic for Blob Storage, configuring an Azure Function as the event handler endpoint to automatically process data when files are uploaded.

Can I create custom Event Grid topics and event subscriptions with advanced filtering?

Yes, you can create custom topics and event subscriptions with advanced filtering to direct events to appropriate handlers, ensuring reliable event routing within Azure.

What is the best way to configure dead-lettering for event-driven architectures in Azure?

The best way to configure dead-lettering is through Event Grid event subscriptions, which capture undelivered events to a storage queue, ensuring reliable event management.

Does Azure Event Grid work with webhooks and storage queues for event handling?

Yes, Event Grid integrates with webhooks and storage queues, allowing you to route and manage events across various Azure services and external endpoints.

When do I need Azure Event Grid for serverless event routing?

You need Azure Event Grid when building serverless, event-driven architectures that require routing events between different Azure services reliably, such as triggering data processing pipelines.