Workleap.Extensions.Configuration.Secrets 1.0.4

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Workleap.Extensions.Configuration.Secrets --version 1.0.4
NuGet\Install-Package Workleap.Extensions.Configuration.Secrets -Version 1.0.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Workleap.Extensions.Configuration.Secrets" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Workleap.Extensions.Configuration.Secrets --version 1.0.4
#r "nuget: Workleap.Extensions.Configuration.Secrets, 1.0.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Workleap.Extensions.Configuration.Secrets as a Cake Addin
#addin nuget:?package=Workleap.Extensions.Configuration.Secrets&version=1.0.4

// Install Workleap.Extensions.Configuration.Secrets as a Cake Tool
#tool nuget:?package=Workleap.Extensions.Configuration.Secrets&version=1.0.4

Workleap.Extensions.Configuration.Secrets

nuget build

This package allows storing configuration values in Azure Key Vault Secrets, using the right Azure credentials based on the current environment.

It can also be used to register ITokenCredentialProvider and ISecretClientProvider in IServiceCollection in order to access Azure credentials or a SecretClient instance.

Getting started

dotnet add package Workleap.Extensions.Configuration.Secrets

Example with an ASP.NET Core minimal API:

var builder = WebApplication.CreateBuilder();

// There are three ways to load configuration values from Azure Key Vault:
builder.Configuration.AddKeyVaultSecrets(builder.Environment);
builder.Configuration.AddKeyVaultSecrets(builder.Environment, new Uri("<my-key-vault-url>"));
builder.Configuration.AddKeyVaultSecrets(builder.Environment, "<my-configuration-key>");

// Register ITokenCredentialProvider and ISecretClientProvider services (optional)
builder.Services.AddKeyVaultSecrets();

Using the registered services

ITokenCredentialProvider and its public implementation TokenCredentialProvider provides an instance of TokenCredential based on the current environment:

  • ManagedIdentityCredential on a non-development environment,
  • Chained credentials of AzureCliCredential and ManagedIdentityCredential in development environment, or
  • CachedInteractiveBrowserCredential in development environment only when Fiddler is opened (Fiddler interferes with az login authentication).
var azureCredential = new TokenCredentialProvider(environment).GetTokenCredential(); // or
var azureCredential = services.GetRequiredService<ITokenCredentialProvider>().GetTokenCredential();

ISecretClientProvider and its public implementation SecretClientProvider provides an instance of SecretClient based on the current environment:

var secretClientProvider = new SecretClientProvider(configurationBuilder, environment); // or
var secretClientProvider = new SecretClientProvider(configuration, environment); // or
var secretClientProvider = services.GetRequiredService<ISecretClientProvider>();
var secretClient = secretClientProvider.GetSecretClient(keyVaultKind); // or
var secretClient = secretClientProvider.GetSecretClient(keyVaultUri); // or
var secretClient = secretClientProvider.GetSecretClient(configurationKey);

License

Copyright © 2022, Workleap. This code is licensed under the Apache License, Version 2.0. You may obtain a copy of this license at https://github.com/gsoft-inc/gsoft-license/blob/master/LICENSE.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.4 64 6/25/2024
1.0.4-preview.4 33 6/25/2024
1.0.4-preview.3 34 6/14/2024
1.0.4-preview.2 46 5/31/2024
1.0.4-preview.1 43 5/31/2024
1.0.3 321 5/21/2024
1.0.3-preview.6 41 5/21/2024
1.0.3-preview.5 36 5/21/2024
1.0.3-preview.4 51 5/10/2024
1.0.3-preview.3 38 5/3/2024
1.0.3-preview.2 49 4/22/2024
1.0.3-preview.1 46 4/15/2024
1.0.2 1,430 4/12/2024
1.0.2-preview.33 49 4/12/2024
1.0.2-preview.32 52 4/3/2024
1.0.2-preview.31 42 4/3/2024
1.0.2-preview.30 48 3/8/2024
1.0.2-preview.29 46 3/7/2024
1.0.2-preview.28 55 3/4/2024
1.0.2-preview.27 52 3/1/2024
1.0.2-preview.26 49 2/16/2024
1.0.2-preview.25 53 2/12/2024
1.0.2-preview.24 46 2/6/2024
1.0.2-preview.23 47 2/6/2024
1.0.2-preview.22 49 1/22/2024
1.0.2-preview.21 51 1/12/2024
1.0.2-preview.20 43 1/12/2024
1.0.2-preview.19 47 1/12/2024
1.0.2-preview.18 65 12/18/2023
1.0.2-preview.17 83 11/26/2023
1.0.2-preview.16 64 11/17/2023
1.0.2-preview.15 51 11/17/2023
1.0.2-preview.14 55 11/13/2023
1.0.2-preview.13 62 11/6/2023
1.0.2-preview.12 61 10/30/2023
1.0.2-preview.11 75 10/24/2023
1.0.2-preview.10 61 10/20/2023
1.0.2-preview.9 68 10/17/2023
1.0.2-preview.8 65 10/13/2023
1.0.2-preview.7 60 10/13/2023
1.0.2-preview.6 65 9/26/2023
1.0.2-preview.5 66 9/25/2023
1.0.2-preview.4 53 9/21/2023
1.0.2-preview.3 56 9/20/2023
1.0.2-preview.2 59 9/20/2023
1.0.2-preview.1 59 9/20/2023
1.0.1 6,353 7/20/2023
1.0.1-preview.18 77 7/20/2023