micro/config
Jake Sanders 4125ae8d53
Add secrets interface to config/secrets (#1325)
* Interface for secrets

* Add secretbox secrets implementation

* Start working on box

* typo

* Add asymmetric encryption implementation

* go mod tidy

* Fix review comments

Co-authored-by: Asim Aslam <asim@aslam.me>
2020-03-10 22:52:06 +00:00
..
cmd Auth Provider (#1309) 2020-03-07 11:06:57 +00:00
encoder fix import paths for v2 release 2020-01-30 14:44:40 +03:00
loader fix import paths for v2 release 2020-01-30 14:44:40 +03:00
options linting fixes 2019-12-04 00:22:02 +03:00
reader fix import paths for v2 release 2020-01-30 14:44:40 +03:00
secrets Add secrets interface to config/secrets (#1325) 2020-03-10 22:52:06 +00:00
source prune util/log and user logger (#1237) 2020-02-23 13:45:20 +00:00
config.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
default_test.go config: remove unused sep variable (#1262) 2020-02-26 08:25:33 +00:00
default.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
options.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00
README.md remove some readmes 2019-07-04 11:15:54 +01:00
value.go fix import paths for v2 release 2020-01-30 14:44:40 +03:00

Config GoDoc

Config is a pluggable dynamic config package

Most config in applications are statically configured or include complex logic to load from multiple sources. Go Config makes this easy, pluggable and mergeable. You'll never have to deal with config in the same way again.

Features

  • Dynamic Loading - Load configuration from multiple source as and when needed. Go Config manages watching config sources in the background and automatically merges and updates an in memory view.

  • Pluggable Sources - Choose from any number of sources to load and merge config. The backend source is abstracted away into a standard format consumed internally and decoded via encoders. Sources can be env vars, flags, file, etcd, k8s configmap, etc.

  • Mergeable Config - If you specify multiple sources of config, regardless of format, they will be merged and presented in a single view. This massively simplifies priority order loading and changes based on environment.

  • Observe Changes - Optionally watch the config for changes to specific values. Hot reload your app using Go Config's watcher. You don't have to handle ad-hoc hup reloading or whatever else, just keep reading the config and watch for changes if you need to be notified.

  • Sane Defaults - In case config loads badly or is completely wiped away for some unknown reason, you can specify fallback values when accessing any config values directly. This ensures you'll always be reading some sane default in the event of a problem.

Getting Started

For detailed information or architecture, installation and general usage see the docs