Puppet Class: icingaweb2::module::vsphere
- Defined in:
- manifests/module/vsphere.pp
Summary
The vSphere module extends the Director. It provides import sources for virtual machines and physical hosts from vSphere.Overview
    Note:
    
  
  If you want to use ‘git` as `install_method`, the CLI `git` command has to be installed. You can manage it yourself as package resource or declare the package name in icingaweb2 class parameter `extra_packages`.
    Note:
    
  
Check out the [vSphere module documentation](www.icinga.com/docs/director/latest/vsphere/doc/).
| 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | # File 'manifests/module/vsphere.pp', line 26
class icingaweb2::module::vsphere(
  Enum['absent', 'present']      $ensure         = 'present',
  Optional[Stdlib::Absolutepath] $module_dir     = undef,
  String                         $git_repository = 'https://github.com/Icinga/icingaweb2-module-vsphere.git',
  Optional[String]               $git_revision   = undef,
  Enum['git', 'none', 'package'] $install_method = 'git',
  String                         $package_name   = 'icingaweb2-module-vsphere',
) {
  icingaweb2::module { 'vsphere':
    ensure         => $ensure,
    git_repository => $git_repository,
    git_revision   => $git_revision,
    install_method => $install_method,
    module_dir     => $module_dir,
    package_name   => $package_name,
  }
} |