hiera-postgresql-backend
Alternate PostgreSQL backend for Hiera
This is a PostgreSQL backend for Hiera inspired by hiera-mysql-backend.
What goes into the sql files.
The poorly named sql files are really yaml files where the key is the lookup key and the value is the SQL statement (it accepts interpolation).
Lets assume your datadir is /etc/puppet/hieradata/ and your hierarchy for hiera just have a common. hiera-postgresql-backend would look for /etc/puppet/hieradata/common.sql the common.sql would look like:
---
applications: SELECT * FROM applications WHERE host='%{fqdn}';
coats: SELECT cut,name,type FROM coats WHERE color='brown';
default_query: SELECT dbhost, dbuser, dbpass FROM db_servers WHERE dbclient='%{fqdn}' and dbname='%{key}';
running hiera applications would run the query against the configured database.
The default_query key is special: it is in fact a default for anything in this hierarchy that is not specified with its own key. For example, running hiera booksdb would run default_query with the key variable in the query being interpolated as "booksdb".
Using
gem install hiera-postgres-backend
Configuring Hiera
Hiera configuration is pretty simple
---
:backends:
- yaml
- postgres
:yaml:
:datadir: /etc/puppet/hieradata
:postgres:
:datadir: /etc/puppet/hieradata
:host: hostname
:user: username
:pass: password
:database: database
:hierarchy:
- "%{::clientcert}"
- "%{::custom_location}"
- common
:logger: console
Known issues
- It always return an Array of hashes regardless of the number of items returned. (I did this on purpose because it is what I needed but I may be persuaded to do otherwise)
- This README is poorly written.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request