vra_puppet_plugin_prep
Version information
This version is compatible with:
- Puppet Enterprise 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x, 2018.1.x, 2017.3.x
- Puppet >= 5.0.0 < 7.0.0
- ,
Start using this module
Add this module to your Puppetfile:
mod 'puppetlabs-vra_puppet_plugin_prep', '0.2.0'
Learn more about managing modules with a PuppetfileDocumentation
vra_puppet_plugin_prep
Prepares a Puppet Enterprise master for vRA Puppet Plugin integration.
Table of Contents
Description
When setting up the vRA Puppet Plugin there are some setup steps that need to be performed on the Puppet Enterprise Master. This module automates many of these, ie it ensures that:
- a system user exists for the plugin to ssh in with
- an api user exists for the plugin to utilise
- sudo rules are in place for this user so the plugin can run the commands it needs to
- autosign policy is configured (shared secret via challengePassword in the CSR)
Beginning with vra_puppet_plugin_prep
Default behaviour (including autosign configuration enabled):
include vra_puppet_plugin_prep
Usage
class { 'vra_puppet_plugin_prep':
vro_plugin_user => 'vro-plugin-user',
vro_password => 'puppetlabs',
vro_password_hash => '$1$Fq9vkV1h$4oMRtIjjjAhi6XQVSH6.Y.',
manage_autosign => true,
manage_localuser => true,
autosign_secret => 'S3cr3tP@ssw0rd!',
}
Reference
Class: vra_puppet_plugin_prep
Parameters:
vro_plugin_user
The username the plugin will connect to Puppet with, both via ssh, and api
Default: vro-plugin-user
vro_password
The password the plugin will authenticate to the Puppet apis with.
Default: puppetlabs
vro_password_hash
The hash of the password the plugin will authenticate with via ssh to the Puppet Master.
Default: $1$Fq9vkV1h$4oMRtIjjjAhi6XQVSH6.Y.
('puppetlabs')
system_uid
Whether to create the vro plugin user as a system user.
Default: false
manage_autosign
Whether to configure autosigning with this module.
Default: True
manage_localuser
Whether to configure the local user creation with this module
Default: True
autosign_secret
The secret to use for autosign validation. It is placed into the challengePassword within the CSR.
Default: S3cr3tP@ssw0rd!
Contributors
Thank you to Jeremy Adams and other contributors to the vRO Starter Content project, from which much of the code in this repo has been stolen.
Dependencies
- herculesteam/augeasproviders_ssh (>= 2.5.0 < 3.0.0)
- herculesteam/augeasproviders_core (>= 2.1.0 < 3.0.0)
- puppetlabs/inifile (>= 1.6.0 < 3.0.0)
- pltraining/rbac (>= 0.0.6 < 0.1.0)