ParameterStoreConfigurationProvider 1.0.0
See the version list below for details.
dotnet add package ParameterStoreConfigurationProvider --version 1.0.0
NuGet\Install-Package ParameterStoreConfigurationProvider -Version 1.0.0
<PackageReference Include="ParameterStoreConfigurationProvider" Version="1.0.0" />
paket add ParameterStoreConfigurationProvider --version 1.0.0
#r "nuget: ParameterStoreConfigurationProvider, 1.0.0"
// Install ParameterStoreConfigurationProvider as a Cake Addin #addin nuget:?package=ParameterStoreConfigurationProvider&version=1.0.0 // Install ParameterStoreConfigurationProvider as a Cake Tool #tool nuget:?package=ParameterStoreConfigurationProvider&version=1.0.0
ParameterStoreConfigurationProvider
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();
}
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 | Versions 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 is compatible. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.NETCoreApp 2.0
- AWSSDK.Core (>= 3.3.19)
- AWSSDK.SimpleSystemsManagement (>= 3.3.14)
- Microsoft.Extensions.Configuration (>= 2.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 2.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.