maestrodev-ssh_keygen

Generate ssh keys for any user using ssh_keygen, that needs to be present before using the module


Keywords
ssh, keygen, id-rsa, puppet, hacktoberfest
Licenses
Apache-2.0/libpng-2.0
Install
puppet module install maestrodev-ssh_keygen --version 999.999.999

Documentation

puppet-ssh_keygen

License Build Status Code Coverage Puppet Forge Puppet Forge - downloads Puppet Forge - endorsement Puppet Forge - scores

Table of Contents

  1. Usage - Configuration options and additional functionality
  2. Development - Guide for contributing to the module

Usage

Generate ssh keys for any user using ssh_keygen, that needs exist before using the module

ssh_keygen { 'john': }

or if not using the default /home/john

ssh_keygen { 'john':
  home => '/var/home'
}

the key comment can also be overriden with

ssh_keygen { 'john':
  comment => 'john key'
}

Generate a dsa key

ssh_keygen { 'john':
  type => 'dsa'
}

specify the bit length

ssh_keygen { 'john':
  bits => 4096
}

Generate new host key

ssh_keygen { 'root':
  filename => '/etc/ssh/ssh_host_rsa_key'
}

Development

This module is maintained by Vox Pupuli. Voxpupuli welcomes new contributions to this module, especially those that include documentation and rspec tests. We are happy to provide guidance if necessary.

Please see CONTRIBUTING for more details.

Authors