vra_puppet_plugin_prep

Prepares a Puppet Enterprise master for vRA Puppet Plugin integration.

Table of Contents

  1. Description
  2. Beginning with vra_puppet_plugin_prep
  3. Usage
  4. Reference
  5. Contributors

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,
  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')

manage_autosign Whether to configure autosigning 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.