Cirreum.Secrets.Azure
1.0.5
dotnet add package Cirreum.Secrets.Azure --version 1.0.5
NuGet\Install-Package Cirreum.Secrets.Azure -Version 1.0.5
<PackageReference Include="Cirreum.Secrets.Azure" Version="1.0.5" />
<PackageVersion Include="Cirreum.Secrets.Azure" Version="1.0.5" />
<PackageReference Include="Cirreum.Secrets.Azure" />
paket add Cirreum.Secrets.Azure --version 1.0.5
#r "nuget: Cirreum.Secrets.Azure, 1.0.5"
#:package Cirreum.Secrets.Azure@1.0.5
#addin nuget:?package=Cirreum.Secrets.Azure&version=1.0.5
#tool nuget:?package=Cirreum.Secrets.Azure&version=1.0.5
Cirreum.Secrets.Azure
Azure Key Vault secrets provider for the Cirreum Foundation Framework
Overview
Cirreum.Secrets.Azure provides seamless integration between Azure Key Vault and the Cirreum secrets provider framework, enabling secure configuration management for .NET applications.
This package implements the SecretsProviderRegistrar pattern to automatically configure Azure Key Vault as a secrets source, with built-in support for Azure Identity authentication and flexible configuration options.
Key Features
- Seamless Integration: Drop-in Azure Key Vault support for Cirreum-based applications
- Azure Identity: Uses
DefaultAzureCredentialwith optional tenant-specific authentication - Flexible Configuration: Two-tier settings model for provider and instance-level configuration
- Activity Tracing: Built-in support for distributed tracing with Azure SDK telemetry
- Production Ready: Follows Microsoft.Extensions.* patterns and conventions
Usage
// Register Azure Key Vault as a secrets provider
services.AddSecretsProvider<AzureKeyVaultRegistrar>(configuration =>
{
configuration.Configure<AzureKeyVaultSettings>(settings =>
{
settings.Instances.Add(new AzureKeyVaultInstanceSettings
{
Endpoint = "https://your-vault.vault.azure.net/",
Identifier = "your-tenant-id" // Optional
});
});
});
Configuration
The provider supports hierarchical configuration through:
AzureKeyVaultSettings: Provider-level settingsAzureKeyVaultInstanceSettings: Individual Key Vault instance settings including vault URI and tenant configuration
Contribution Guidelines
Be conservative with new abstractions
The API surface must remain stable and meaningful.Limit dependency expansion
Only add foundational, version-stable dependencies.Favor additive, non-breaking changes
Breaking changes ripple through the entire ecosystem.Include thorough unit tests
All primitives and patterns should be independently testable.Document architectural decisions
Context and reasoning should be clear for future maintainers.Follow .NET conventions
Use established patterns from Microsoft.Extensions.* libraries.
Versioning
Cirreum.Secrets.Azure follows Semantic Versioning:
- Major - Breaking API changes
- Minor - New features, backward compatible
- Patch - Bug fixes, backward compatible
Given its foundational role, major version bumps are rare and carefully considered.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Cirreum Foundation Framework
Layered simplicity for modern .NET
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Azure.Extensions.AspNetCore.Configuration.Secrets (>= 1.4.0)
- Azure.Identity (>= 1.17.1)
- Cirreum.SecretsProvider (>= 1.0.6)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Cirreum.Secrets.Azure:
| Package | Downloads |
|---|---|
|
Cirreum.Runtime.Secrets
The Runtime Secrets Provider configuration. |
GitHub repositories
This package is not used by any popular GitHub repositories.