Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 2.48 KB

episode4-dotnetcoreconfig.md

File metadata and controls

32 lines (22 loc) · 2.48 KB

Episode 4 -Configuration and Settings in ASP.NET Core

Watch episode on youtube Watch episode on channel9

Cloud Native Show - Cloud Native Configuration and Settings in ASP.NET Core

Guest

Andrew Stanton-Nurse @anurse

Introduction

One of the "Factors" in cloud native applications states you should store your configuration and settings outside of your core application code. In this episode, Andrew gives us a run down on how the configuration options in .NET Core allows for layers of configurability and abstractions for your app.

Key Points / Questions

  1. Configuration has come a long way in ASP.NET…no more XML files?
  2. By default .NET Core manages settings and configuration in an order of operations per se? Can you talk about that.
  3. Can we mix the various options of configuration options? ENV, JSON, INI etc?
  4. What about Environments?
  5. Now that we have a base of what’s “in the box”, what about getting these configurations out of our code base and externalizing these? As a practice of Cloud Native we want to manage these separately and not have them tied directly to the code base.
  6. What are the options?
  7. Security, Practices?
  8. Are there conventions we should be aware of that the framework follows?

Show Notes