This document provides an overview of configuration in ASP.NET Core, including: - Configuration supports JSON, XML, INI, environment variables, command line arguments, and custom providers. - The configuration system provides access to key-value settings from multiple sources in a hierarchical structure. - Options patterns use classes to represent related settings that can be injected via IOptions and configured from appsettings. - The Secret Manager tool can store secrets during development without checking them into source control.