Version information
released Aug 19th 2015
This version is compatible with:
- ,
Start using this module
Add this module to your Puppetfile:
mod 'siliconfrog-rsa_keys', '0.1.7'
Learn more about managing modules with a PuppetfileDocumentation
siliconfrog/rsa_keys — version 0.1.7 Aug 19th 2015
rsa_keys
This module let provide a wrapper for user rsa_keys management. If user is present check its rsa keys and if passed array differ add missing keys. If purge flag is on and actual keys differ from the ones passed via rsa_key_hash, installed keys missing will be removed.
install
puppet module install siliconfrog-rsa_keys
Simple usage:
declare class in your manifests
class {'rsa_keys': user => 'root', rsa_key_hash => hiera_hash('root_pub_key'), purge => true, }
and put your keys data in an associative array or in a hiera structure like this:
root_pub_key: keylabel1:
- key: keylabel2:
- key:
Dependencies
- puppetlabs/stdlib (>=3.0.0 <7.0.0)