Search⌘ K

Building the Basic Structure

Explore how to build the foundational structure of an Azure event-driven architecture. Understand how to use event grid to capture VM creation events, manage message workflows with storage queues, and implement Azure Functions for validation, retry logic, and API triggers. This lesson helps you design, deploy, and monitor event-driven solutions using core Azure components.

We'll cover the following...

Architecture

Let’s begin by looking at the architecture diagram below.

Architecture Diagram
Architecture Diagram

Event grid

An event grid is linked with a subscription listening to the events related to new virtual machine creation. It is necessary to add filtering here. Otherwise, the event grid will generate messages whenever any resource is created in a subscription or in the target resource group. All events are then ...