Hiera configuration layers
Hiera uses three independent layers of configuration. Each layer has its own hierarchy, and they’re linked into one super-hierarchy before doing a lookup.
The three layers are searched in the following order: global → environment → module. Hiera searches every data source in the global layer’s hierarchy before checking any source in the environment layer.
The global layer
The configuration file for the global layer is located, by
default, in $confdir/hiera.yaml
. You can change the location by changing the
hiera_config
setting in puppet.conf
.
Hiera has one global hierarchy. Because it goes before the environment layer, it’s useful for temporary overrides, for example, when your ops team needs to bypass its normal change processes.
The global layer is the only place where legacy Hiera 3 backends can be used - it’s an important piece of the transition period when
you migrate you backends to support Hiera 5. It
supports the following config formats: hiera.yaml
v5, hiera.yaml
v3 (deprecated).
Other than the above use cases, try to avoid the global layer. Specify all normal data in the environment layer.
The environment layer
The configuration file for the environment layer is located, by default, in <ENVIRONMENT DIR>/hiera.yaml
.
The environment layer is where most of your Hiera data hierarchy definition happens. Every Puppet environment has its own hierarchy configuration, which applies to nodes in that environment. Supported config formats include: v5, v3 (deprecated).
The module layer
The configuration file for a module layer is located, by default,
in a module's <MODULE>/hiera.yaml
.
The module layer
sets default values and merge behavior for a module’s class parameters. It is a
convenient alternative to the params.pp
pattern.
params.pp
, use the
default_hierarchy
, as those bindings are excluded from merges.
When placed in the regular hierarchy in the module’s hierarchy the bindings are
merged when a merge lookup is performed.It comes last in Hiera’s lookup order, so environment data set by a user overrides the default data set by the module’s author.
Every module can have its own hierarchy configuration. You can only bind data for keys in the module’s namespace. For example:
Lookup key | Relevant module hierarchy |
---|---|
ntp::servers | ntp |
jenkins::port | jenkins |
secure_server | (none) |
Hiera uses the ntp
module’s hierarchy when looking up ntp::servers
, but uses
the jenkins
module’s hierarchy when looking up jenkins::port
. Hiera
never checks the module for a key beginning with jenkins::
.
When
you use the lookup function for keys that don’t have a namespace (for example,
secure_server
),
the module layer is not consulted.
The three-layer system means that each environment has its own hierarchy, and so do modules. You can make hierarchy changes on an environment-by-environment basis. Module data is also customizable.