Mohsens22.AWS.SSM.ParameterStoreConfigurationProvider 2.0.3.7

dotnet add package Mohsens22.AWS.SSM.ParameterStoreConfigurationProvider --version 2.0.3.7
                    
NuGet\Install-Package Mohsens22.AWS.SSM.ParameterStoreConfigurationProvider -Version 2.0.3.7
                    
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="Mohsens22.AWS.SSM.ParameterStoreConfigurationProvider" Version="2.0.3.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Mohsens22.AWS.SSM.ParameterStoreConfigurationProvider" Version="2.0.3.7" />
                    
Directory.Packages.props
<PackageReference Include="Mohsens22.AWS.SSM.ParameterStoreConfigurationProvider" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Mohsens22.AWS.SSM.ParameterStoreConfigurationProvider --version 2.0.3.7
                    
#r "nuget: Mohsens22.AWS.SSM.ParameterStoreConfigurationProvider, 2.0.3.7"
                    
#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.
#:package Mohsens22.AWS.SSM.ParameterStoreConfigurationProvider@2.0.3.7
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Mohsens22.AWS.SSM.ParameterStoreConfigurationProvider&version=2.0.3.7
                    
Install as a Cake Addin
#tool nuget:?package=Mohsens22.AWS.SSM.ParameterStoreConfigurationProvider&version=2.0.3.7
                    
Install as a Cake Tool

ParameterStoreConfigurationProvider NuGet

Note: This package is a fork of this project, with the aim of modernizing this library to be used with more modern .net / awssdk versions.

Enrich your configuration with plain text or secure settings from AWS ParameterStore.

Example

Example configuration for a asp.net core project:

    public static IWebHost BuildWebHost(string[] args)
    {
        
        return WebHost.CreateDefaultBuilder(args)
                .ConfigureAppConfiguration((hostContext, config)=>
                {
                    config.SetBasePath(Directory.GetCurrentDirectory())
                    .AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)
                    .AddEnvironmentVariables()
                    .AddParameterStoreConfig(parameterStoreConfig =>
                    {
                        parameterStoreConfig.ParameterMapping = new List<ParameterMapping>()
                        {
                            new ParameterMapping(){ AwsName = "/somenamespace/somekey", SettingName = "somekey"},
                            new ParameterMapping(){ AwsName = "/somenamespace/someotherkey", SettingName = "someotherkey"},
                        };
                        parameterStoreConfig.Region = "eu-west-1";
                        parameterStoreConfig.AwsCredential = new Amazon.Runtime.StoredProfileAWSCredentials();
                    })
                    .AddParameterStoreConfig(parameterStoreConfig =>
                    {
                        parameterStoreConfig.ParameterMapping = new List<ParameterMapping>()
                        {
                            new ParameterMapping(){ AwsName = "/somenamespace/somesecurekey", SettingName = "somesecurekey"}
                        };
                        parameterStoreConfig.WithDecryption = true;
                        parameterStoreConfig.Region = "eu-west-1";
                        parameterStoreConfig.AwsCredential = new Amazon.Runtime.StoredProfileAWSCredentials();
                    });
                })
                .UseStartup<Startup>()
                .Build();
    }

Alternatively

You can also use parameterStoreConfig.UseDefaultCredentials = true; to let AWS handle this.

Finding your way in the solution

in /src you find two projects, one example-api and the src for the nuget package itself in /test you find the unittests

To use the provided samples you have to will have to setup 3 parameters in the ParameterStore

/somenamespace/somekey /somenamespace/someotherkey /somenamespace/somesecurekey ⇒ This needs to be set up as a secure string, which requires a KMS-Encryption key

You will also have set up and save a local default aws profile on the computer if you want to use StoredProfileAWSCredentials as it is used in the example above (see http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html)

ParameterStore on AWS

see: http://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-paramstore.html

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  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. 
.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
2.0.3.7 103 8/22/2025

Targeting modern package versions