PrincipleStudios.Extensions.Configuration.SecretsManager 0.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package PrincipleStudios.Extensions.Configuration.SecretsManager --version 0.2.0
NuGet\Install-Package PrincipleStudios.Extensions.Configuration.SecretsManager -Version 0.2.0
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="PrincipleStudios.Extensions.Configuration.SecretsManager" Version="0.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PrincipleStudios.Extensions.Configuration.SecretsManager --version 0.2.0
#r "nuget: PrincipleStudios.Extensions.Configuration.SecretsManager, 0.2.0"
#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 PrincipleStudios.Extensions.Configuration.SecretsManager as a Cake Addin
#addin nuget:?package=PrincipleStudios.Extensions.Configuration.SecretsManager&version=0.2.0

// Install PrincipleStudios.Extensions.Configuration.SecretsManager as a Cake Tool
#tool nuget:?package=PrincipleStudios.Extensions.Configuration.SecretsManager&version=0.2.0

Usage

  1. Add this package.

  2. Add to your application's configuration builder.

    For example, this will add a root Secrets:secret containing the value stored in the secret string within AWS SecretsManager at test/secret:

     .AddSecretsManager(opt =>
     {
         opt.Region = "us-east-1";
         opt.CredentialsProfile = "my-credentials-profile";
         opt.Map = new ()
             {
                 { "Secrets:secret", new () { SecretId = "test/secret" } }
             };
     })
    
  3. Use configuration as normal, including IOptionsMonitor<> to refresh from AWS periodically.

Options

  • CredentialsProfile - Helper property to set load a credentails profile from your system's AWS configuration
  • CredentialProfileOptions - Helper property to create credentials with advanced configuration
  • Region - Helper property to set the region endpoint based on AWS's well-known region names
  • Credentials - Sets AWS credentials directly
  • RegionEndpoint - Sets the AWS region endpoint directly
  • SecretsManagerClientFactory - Allows overriding of the SecretsManagerClientFactory. Mostly useful only for unit tests.
  • ConfigureSecretsManagerClientConfig - Allows further changes to the underlying AmazonSecretsManagerConfig before the client is created.
  • ReloadInterval - Determines duration for caching as well as change notifications for all keys in this secrets manager configuration provider.
  • Map - Provides a mapping from configuration keys to AWS secret ids for custom structuring of your configuration. Keys are .NET Configuration paths.
    • SecretId - The name of the secret id within AWS.
    • Format - Transforms the value in the secret before adding it to the config. See FormatTransforms.
  • FormatTransforms - A dictionary containing format mappings. Each mapping implements the IFormatTransform. Preregistered transforms include:
    • RDS-sqlserver - Expects an RDS secret from SecretsManager and transforms it into a SqlConnection ConnectionString.
    • RDS-npgsql - Expects an RDS secret from SecretsManager and transforms it into a Npgsql ConnectionString.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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
0.5.1 8,094 2/2/2022
0.5.0 1,920 10/4/2021
0.4.1 300 10/1/2021
0.4.0 322 10/1/2021
0.3.0 418 8/12/2021
0.2.0 318 8/10/2021
0.1.2 296 8/9/2021
0.1.1 297 8/9/2021
0.1.0 293 6/25/2021
0.0.1 360 6/21/2021