Puppet Class: prometheus_cd::params
- Inherited by:
-
prometheus_cd::main::dirs
prometheus_cd::main::files
prometheus_cd::main::config
prometheus_cd::main::install
prometheus_cd::main::service
prometheus_cd::main::yumrepo
- Defined in:
- manifests/params.pp
Summary
Class holds all parameters for the prometheus_cd module.Overview
prometheus_cd::params.pp Module name: prometheus_cd Author: Arne Teuke (arne_teuke@confdroid.com)
11 12 13 14 15 16 17 18 19 20 21 |
# File 'manifests/params.pp', line 11
class prometheus_cd::params (
String $reqpackage_prom = 'prometheus',
String $reqpackage_ne = 'node_exporter',
String $pkg_ensure = 'present',
Boolean $manage_prometheus = false,
Boolean $manage_node_exporter = false,
) {
# includes must be last
include prometheus_cd::main::config
}
|