vgribok / modernization-unicorn-store

AWS Sample Application for containerizing a .NET application
Apache License 2.0
1 stars 3 forks source link

Eliminate AWS-specific secret management code #2

Closed vgribok closed 5 years ago

vgribok commented 5 years ago

The Issue

As a developer using this sample as a blueprint for my own app development I want the codebase of the sample be fully independent from vendor-specific cloud functionality So that the application would be truly universal, per containerization paradigm

Details

A code block starting here exists to handle AWS Secrets Management specific execution path. Ideally, ASP.NET Core application configuration settings values should be injected in a way compatible with all existing configuration providers, like appsettings.json file, command line parameters, environment variables, VS secret management, etc.

Acceptance Criteria