Giter Site home page Giter Site logo

parameterstoreconfigurationprovider's Introduction

ParameterStoreConfigurationProvider NuGet

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

parameterstoreconfigurationprovider's People

Contributors

schwamster avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.