hiera-ehttp
Description
This is a back end plugin for Hiera that allows lookup to be sourced from HTTP queries. The intent is to make this backend adaptable to allow you to query any data stored in systems with a RESTful API such as CouchDB or even a custom store with a web front-end
Example Configuration
You can generate default keys with
hiera-ehttp keys -n "CN=hiera-http/DC=neverland"
Grab the hiera-ehttp gem and then add this to your hiera config file
:backends:
- ehttp
:ehttp:
:host: 127.0.0.1
:port: 5984
:output: json
:failure: graceful
:keyfile: /etc/puppet/keys/key.pem
:certfile: /etc/puppet/keys/cert.pem
:paths:
- /hiera/%{fqdn}
- /hiera/defaults
Using the command line utility you can encrypt a value
hiera-ehttp encrypt -c cert.pem -s "secret value"
The command line utility also supports the rest api that couch uses. All the other apis are sad, but I will try to make them happier as time permits.
Configuration Parameters
The following are optional configuration parameters
:output:
Specify what handler to use for the output of the request. Currently supported outputs are plain, which will just return the whole document, or YAML and JSON which parse the data and try to look up the key
:http_connect_timeout:
Timeout in seconds for the HTTP connect (default 10)
:http_read_timeout:
Timeout in seconds for waiting for a HTTP response (default 10)
:failure:
When set to graceful
will stop hiera-http from throwing an exception in the event of a connection error, timeout or invalid HTTP response and move on. Without this option set hiera-http will throw an exception in such circumstances
The :paths:
parameter can also parse the lookup key, eg:
:paths:
/configuraiton.php?lookup=%{key}
:use_ssl:
When set to true, enable SSL (default: false)
:ssl_ca_cert
Specify a CA cert for use with SSL
:ssl_cert
Specify location of SSL certificate
:ssl_key
Specify location of SSL key
:keyfile:
The private key used when storing encrypted data
:certfile:
The certificate used when storing encrypted data
If and only if both :keyfile:
and :certfile:
are specified then encryption will be enabled
Notes
If you want/need features added and don't hesitate to send a pull request or ask me to add them for you.
This backend loosely follows the scheme that hiera-eyaml use so there may be some compatibility between these two projects, but I make no promises.
The encryption support is not very fetured yet, and some things that came from the original hiera-http backend have not been tested in this backend yet. The moral is if you find a bug, make an issue so I know, or create a fix and create a pull request.
Credits
- Much of this code comes from the original hiera-http created by Craig Dunn [email protected]
- SSL components contributed from Ben Ford [email protected]