hiera_yaml_hierarchy_expander
Version information
This version is compatible with:
- Puppet Enterprise 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >= 4.0.0 < 5.0.0
- , , ,
This module has been deprecated by its author since May 15th 2020.
Start using this module
Documentation
hiera-yaml_hierarchy_expander
Hiera backend plugin that expands the hierarchy definition by interpolating arrays and wildcards.
This module is deprecated in Puppet > 4.9 / Hiera 5
Happily, Hiera 5 provides (almost) the same functionality as this extension,
so our recomendation is to upgrade and stop using yaml_hierarchy_expander
.
See Hiera: Config file syntax for details.
In a brief, here's the correspondence between yaml_hierarchy_expander
config and the Hiera 5 equivalent.
# yaml_hierarchy_expander
:hierarchy:
- 'groups/%{::groups}'
- 'common/*'
# hiera 5
hierarchy:
- name: Per group data files
mapped_paths: [facts.groups, group, "groups/%{group}.yaml"]
- name: Common data data glob
glob: "common/*.yaml"
The only feature not covered by Hiera 5 is a mix of array expansion and wildcards like:
groups/%{::groups}/*
This is a kind of mapped_globs
, not provided (yet?) by Hiera 5.
Compatibility
Use 1.x.x releases for Hiera 1.x and 2.x, and 2.x.x releases for Hiera 3.x.
Example
:backends:
- yaml_hierarchy_expander
:logger: console
:hierarchy:
- 'nodes/%{::fqdn}'
- 'groups/%{::groups}'
- 'common/*'
:yaml_hierarchy_expander:
:datadir: '/etc/puppet/environments/%{::environment}/hieradata'
:expanders: ['::groups']
This example shows the two features of the backend:
common/*
is expanded to as much hierarchy lines as yaml files found in thecommon/
subdirectory::groups
is an array, and since it is declared in the:expanders:
section, it is expanded to a hierarchy line per item in the array
License
MIT License, see LICENSE file.
Contact
Use contact form at http://sbit.io
Support
Please log tickets and issues on GitHub
MIT License Copyright (c) 2017 Jonathan Araña Cruz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.