PrincipleStudios.Extensions.Configuration.SecretsManager 0.5.1

dotnet add package PrincipleStudios.Extensions.Configuration.SecretsManager --version 0.5.1
NuGet\Install-Package PrincipleStudios.Extensions.Configuration.SecretsManager -Version 0.5.1
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.5.1" />
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.5.1
#r "nuget: PrincipleStudios.Extensions.Configuration.SecretsManager, 0.5.1"
#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.5.1

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

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()
    
  3. Ensure your application receives AWS standard environment variables to set your credentials. Alternatively, customize via the options object.

  4. Add environment variables to create the mapping.

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

     AWSSM_ID_Secrets__secret=test/secret
    
  5. Use configuration as normal, including IOptionsMonitor<> to receive notifications when configuration is refreshed from AWS.

Environment Variables

Environment variables are used to keep your configuration flexible at run-time.

Credentials

  1. If an AWS_PROFILE environment variable is provided, the credentials and region are loaded from the AWS Credential Profile Store Chain.
  2. If both AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY environment variables are provided, they are used.
  3. If an AWS_DEFAULT_REGION environment variable is provided, the region specified overrides other environment variables.

Configuration Mapping

By default, the following environment variables are used to create configuration entries. (This is configurable via EnvironmentVariableLoadConfiguration.) After a prefix, environment variable naming corresponds to that for Microsoft.Extensions.Configuration.EnvironmentVariables.

  • AWSSM_ID_ - the name of the secret within Secrets Manager.
  • AWSSM_FORMAT_ - the Format Transform to use when loading the secret into the configuration.
  • AWSSM_ARG_ - the argument passed to the format transform.

Advanced Configuration

While .AddSecretsManager() makes it easy to use the default settings via environment variables, there are some situations where you may wish to customize your secrets further. You may add the secrets manager configuration provider through this additional call:

.AddSecretsManager(options => 
{
    // configure options here
}, optional: false)

Specifing optional: true means that if credentials are not supplied or any secrets are not accessible when the application launches, the secrets manager configuration will not be processed.

If no secrets are configured in the Map (either through advanced configuration or environment variables), credentials are not checked.

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.
  • EnvironmentVariableLoadConfiguration - Determines environment variable prefixes to create the map automatically. Set this to null to disable environment variable configuration mapping.
    • SecretIdPrefix - Sets the secret name environment variable prefix. (Defaults to AWSSM_ID_.)
    • SecretFormatPrefix - Sets the secret format transform environment variable prefix. (Defaults to AWSSM_FORMAT_.)
  • Map - Provides a programmatic 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.
    • Argument - The argument passed to the format transform.
  • FormatTransforms - A dictionary containing format mappings. Each mapping implements the IFormatTransform. Preregistered transforms include:
    • noop - Passes the raw value of the secret as a string within the configuration key
    • Json - Expands a Json object into multiple configuration keys nested underneath the main key for the secret. Alternatively, if an argument is provided, extract only the property named in the argument as the value.
    • 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.
  • DefaultFormatter - The default formatter to use when loading a secret. (Defaults to "Json")
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 7,515 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