Puppet Class: icingaweb2::module::vsphere

Defined in:
manifests/module/vsphere.pp

Overview

Class: icingaweb2::module::vsphere

The vSphere module extends the Director. It provides import sources for virtual machines and physical hosts from vSphere.

Parameters

ensure

Enable or disable module. Defaults to ‘present`

Parameters:

  • ensure (Enum['absent', 'present']) (defaults to: 'present')
  • git_repository (String) (defaults to: 'https://github.com/Icinga/icingaweb2-module-vsphere.git')
  • git_revision (Optional[String]) (defaults to: undef)


12
13
14
15
16
17
18
19
20
21
22
23
# File 'manifests/module/vsphere.pp', line 12

class icingaweb2::module::vsphere(
  Enum['absent', 'present'] $ensure           = 'present',
  String                    $git_repository   = 'https://github.com/Icinga/icingaweb2-module-vsphere.git',
  Optional[String]          $git_revision     = undef,
){

  icingaweb2::module { 'vsphere':
    ensure         => $ensure,
    git_repository => $git_repository,
    git_revision   => $git_revision,
  }
}