Skip to content

Latest commit

 

History

History

README.md

Aspire.Hosting.Azure.EventHubs library

Provides extension methods and resource definitions for a .NET Aspire AppHost to configure Azure Event Hubs.

Getting started

Prerequisites

Install the package

Install the .NET Aspire Azure Event Hubs Hosting library with NuGet:

dotnet add package Aspire.Hosting.Azure.EventHubs

Configure Azure Provisioning for local development

Adding Azure resources to the .NET Aspire application model will automatically enable development-time provisioning for Azure resources so that you don't need to configure them manually. Provisioning requires a number of settings to be available via .NET configuration. Set these values in user secrets in order to allow resources to be configured automatically.

{
    "Azure": {
      "SubscriptionId": "<your subscription id>",
      "ResourceGroupPrefix": "<prefix for the resource group>",
      "Location": "<azure location>"
    }
}

NOTE: Developers must have Owner access to the target subscription so that role assignments can be configured for the provisioned resources.

Usage example

In the Program.cs file of AppHost, add an Event Hubs connection and consume the connection using the following methods:

var eventHubs = builder.AddAzureEventHubs("eh");

var myService = builder.AddProject<Projects.MyService>()
                       .WithReference(eventHubs);

The WithReference method passes that connection information into a connection string named eh in the MyService project. In the Program.cs file of MyService, the connection can be consumed using the client library Aspire.Azure.Messaging.EventHubs:

builder.AddAzureEventProcessorClient("eh");

Additional documentation

Feedback & contributing

https://github.com/dotnet/aspire