[Awesome Go] Use viper to load local or remote config from file & environment variables and write config to file in Golang (Go)
viper
Viper is a complete configuration solution for Go applications including 12-Factor
apps. It is designed to work within an application, and can handle all types of configuration needs and formats. It supports:
-
setting defaults
-
reading from JSON, TOML, YAML, HCL, envfile and Java properties config files
-
live watching and re-reading of config files (optional)
-
reading from environment variables
-
reading from remote config systems (etcd or Consul), and watching changes
-
reading from command line flags
-
reading from buffer
-
setting explicit values
Viper can be thought of as a registry for all of your applications configuration needs.
Viper uses the following precedence order. Each item takes precedence over the item below it:
-
explicit call to
Set
-
flag
-
env
-
config
-
key/value store
-
default
Important: Viper configuration keys are case insensitive. There are ongoing discussions about making that optional.
Installation
1 | go get -u github.com/spf13/viper |
Usage
Establishing Defaults
A good configuration system will support default values. A default value is not required for a key, but it’s useful in the event that a key hasn’t been set via config file, environment variable, remote configuration or flag.
Examples:
1 | viper.SetDefault("ContentDir", "content") |
Reading Config Files
Viper requires minimal configuration so it knows where to look for config files. Viper supports JSON, TOML, YAML, HCL, INI, envfile and Java Properties files. Viper can search multiple paths, but currently a single Viper instance only supports a single configuration file. Viper does not default to any configuration search paths leaving defaults decision to an application.
Here is an example of how to use Viper to search for and read a configuration file. None of the specific paths are required, but at least one path should be provided where a configuration file is expected.
1 | viper.SetConfigName("config") // name of config file (without extension) |
You can handle the specific case where no config file is found like this:
1 | if err := viper.ReadInConfig(); err != nil { |
Writing Config Files
Reading from config files is useful, but at times you want to store all modifications made at run time. For that, a bunch of commands are available, each with its own purpose:
A small examples section:
1 | viper.WriteConfig() // writes current config to predefined path set by 'viper.AddConfigPath()' and 'viper.SetConfigName' |
Watching and re-reading config files
Viper supports the ability to have your application live read a config file while running.
Make sure you add all of the configPaths()
prior to calling WatchConfig()
.
1 | viper.WatchConfig() |
Reading Config from io.Reader
Viper predefines many configuration sources such as files, environment variables, flags, and remote K/V store, but you are not bound to them. You can also implement your own required configuration source and feed it to viper.
1 | viper.SetConfigType("yaml") // or viper.SetConfigType("YAML") |
Working with Environment Variables
Viper has full support for environment variables. This enables 12 factor applications out of the box. There are five methods that exist to aid working with ENV:
1 | AutomaticEnv() |
When working with ENV
variables, it’s important to recognize that Viper treats ENV
variables as case sensitive.
Viper provides a mechanism to try to ensure that ENV
variables are unique. By using SetEnvPrefix
, you can tell Viper to use a prefix while reading from the environment variables. Both BindEnv and AutomaticEnv will use this prefix.
BindEnv takes one or more parameters. The first parameter is the key name, the rest are the name of the environment variables to bind to this key. If more than one are provided, they will take precedence in the specified order. The name of the environment variable is case sensitive. If the ENV variable name is not provided, then Viper will automatically assume that the ENV variable matches the following format: prefix + “_” + the key name in ALL CAPS. When you explicitly provide the ENV variable name (the second parameter), it does not automatically add the prefix. For example if the second parameter is “id”, Viper will look for the ENV variable “ID”.
One important thing to recognize when working with ENV
variables is that the value will be read each time it is accessed. Viper does not fix the value when the BindEnv is called.
AutomaticEnv
is a powerful helper especially when combined with SetEnvPrefix
. When called, Viper will check for an environment variable any time a viper.Get request is made. It will apply the following rules. It will check for an environment variable with a name matching the key uppercased and prefixed with the EnvPrefix
if set.
SetEnvKeyReplacer
allows you to use a strings.Replacer
object to rewrite Env
keys to an extent. This is useful if you want to use -
or something in your Get()
calls, but want your environmental variables to use _
delimiters. An example of using it can be found in viper_test.go
.
Alternatively, you can use EnvKeyReplacer
with NewWithOptions
factory function. Unlike SetEnvKeyReplacer
, it accepts a StringReplacer
interface allowing you to write custom string replacing logic.
By default empty environment variables are considered unset and will fall back to the next configuration source. To treat empty environment variables as set, use the AllowEmptyEnv
method.
Env example
1 | SetEnvPrefix("spf") // will be uppercased automatically |
Working with Flags
Viper has the ability to bind to flags. Specifically, Viper supports Pflags
as used in the GitHub - spf13/cobra: A Commander for modern Go CLI interactions - https://github.com/spf13/cobra library.
Like BindEnv
, the value is not set when the binding method is called, but when it is accessed. This means you can bind as early as you want, even in an init()
function.
For individual flags, the BindPFlag()
method provides this functionality.
Example:
1 | serverCmd.Flags().Int("port", 1138, "Port to run Application server on") |
You can also bind an existing set of pflags (pflag.FlagSet
):
Example:
1 | pflag.Int("flagname", 1234, "help message for flagname") |
The use of pflag in Viper does not preclude the use of other packages that use the flag package from the standard library. The pflag package can handle the flags defined for the flag package by importing these flags. This is accomplished by a calling a convenience function provided by the pflag package called AddGoFlagSet()
.
Example:
1 | package main |
Flag interfaces
Viper provides two Go interfaces to bind other flag systems if you don’t use Pflags.
FlagValue represents a single flag. This is a very simple example on how to implement this interface:
1 | type myFlag struct {} |
Once your flag implements this interface, you can simply tell Viper to bind it:
1 | viper.BindFlagValue("my-flag-name", myFlag{}) |
FlagValueSet represents a group of flags. This is a very simple example on how to implement this interface:
1 | type myFlagSet struct { |
Once your flag set implements this interface, you can simply tell Viper to bind it:
1 | fSet := myFlagSet{ |
Remote Key/Value Store Support
To enable remote support in Viper, do a blank import of the viper/remote
package:
1 | import _ "github.com/spf13/viper/remote" |
Viper will read a config string (as JSON, TOML, YAML, HCL or envfile) retrieved from a path in a Key/Value store such as etcd or Consul. These values take precedence over default values, but are overridden by configuration values retrieved from disk, flags, or environment variables.
Viper uses crypt to retrieve configuration from the K/V store, which means that you can store your configuration values encrypted and have them automatically decrypted if you have the correct gpg keyring. Encryption is optional.
You can use remote configuration in conjunction with local configuration, or independently of it.
crypt has a command-line helper that you can use to put configurations in your K/V store. crypt defaults to etcd on http://127.0.0.1:4001.
1 | go get github.com/bketelsen/crypt/bin/crypt |
Confirm that your value was set:
1 | crypt get -plaintext /config/hugo.json |
See the crypt documentation for examples of how to set encrypted values, or how to use Consul.
Remote Key/Value Store Example - Unencrypted
etcd
1 | viper.AddRemoteProvider("etcd", "http://127.0.0.1:4001","/config/hugo.json") |
Consul
You need to set a key to Consul key/value storage with JSON value containing your desired config. For example, create a Consul key/value store key MY_CONSUL_KEY with value:
1 | { |
Firestore
1 | viper.AddRemoteProvider("firestore", "google-cloud-project-id", "collection/document") |
Of course, you’re allowed to use SecureRemoteProvider also
Remote Key/Value Store Example - Encrypted
1 | viper.AddSecureRemoteProvider("etcd","http://127.0.0.1:4001","/config/hugo.json","/etc/secrets/mykeyring.gpg") |
Watching Changes in etcd - Unencrypted
1 | // alternatively, you can create a new viper instance. |
Getting Values From Viper
In Viper, there are a few ways to get a value depending on the value’s type. The following functions and methods exist:
1 | Get(key string) : interface{} |
One important thing to recognize is that each Get function will return a zero value if it’s not found. To check if a given key exists, the IsSet()
method has been provided.
Example:
1 | viper.GetString("logfile") // case-insensitive Setting & Getting |
Accessing nested keys
The accessor methods also accept formatted paths to deeply nested keys. For example, if the following JSON file is loaded:
1 | { |
Viper can access a nested field by passing a .
delimited path of keys:
1 | GetString("datastore.metric.host") // (returns "127.0.0.1") |
This obeys the precedence rules established above; the search for the path will cascade through the remaining configuration registries until found.
For example, given this configuration file, both datastore.metric.host and datastore.metric.port are already defined (and may be overridden). If in addition datastore.metric.protocol was defined in the defaults, Viper would also find it.
However, if datastore.metric was overridden (by a flag, an environment variable, the Set() method, …) with an immediate value, then all sub-keys of datastore.metric become undefined, they are “shadowed” by the higher-priority configuration level.
Viper can access array indices by using numbers in the path. For example:
1 | { |
Lastly, if there exists a key that matches the delimited key path, its value will be returned instead. E.g.
1 | { |
Extracting a sub-tree
When developing reusable modules, it’s often useful to extract a subset of the configuration and pass it to a module. This way the module can be instantiated more than once, with different configurations.
For example, an application might use multiple different cache stores for different purposes:
1 | cache: |
We could pass the cache name to a module (eg. NewCache(“cache1”)), but it would require weird concatenation for accessing config keys and would be less separated from the global config.
So instead of doing that let’s pass a Viper instance to the constructor that represents a subset of the configuration:
1 | cache1Config := viper.Sub("cache.cache1") |
Note: Always check the return value of Sub. It returns nil if a key cannot be found.
Internally, the NewCache
function can address max-items and item-size keys directly:
1 | func NewCache(v *Viper) *Cache { |
The resulting code is easy to test, since it’s decoupled from the main config structure, and easier to reuse (for the same reason).
Unmarshaling
You also have the option of Unmarshaling all or a specific value to a struct
, map
, etc.
There are two methods to do this:
1 | Unmarshal(rawVal interface{}) : error |
Example:
1 | type config struct { |
Viper also supports unmarshaling into embedded structs:
1 | /* |
Viper uses github.com/mitchellh/mapstructure - https://github.com/mitchellh/mapstructure under the hood for unmarshaling values which uses mapstructure tags by default.
Marshalling to string
You may need to marshal all the settings held in viper into a string rather than write them to a file. You can use your favorite format’s marshaller with the config returned by AllSettings()
.
1 | import ( |
References
[1] viper · pkg.go.dev - https://pkg.go.dev/github.com/spf13/viper
[2] GitHub - spf13/viper: Go configuration with fangs - https://github.com/spf13/viper
[4] GitHub - spf13/cobra: A Commander for modern Go CLI interactions - https://github.com/spf13/cobra