Puppet Class: splunk::params
- Inherited by:
-
splunk
- Defined in:
- manifests/params.pp
Overview
Class: splunk::params
This class defines default parameters used by the main module class splunk
Variables
Refer to splunk class for the variables defined here.
Usage
This class is not intended to be used directly. It may be imported or inherited by other classes
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'manifests/params.pp', line 14
class splunk::params {
### Application related parameters
$license_file_source = undef
$install = 'forwarder'
$install_source = ''
$admin_password = 'changeme'
$forward_server = ''
$deployment_server = ''
$monitor_path = ''
$monitor_sourcetype = ''
$template_inputs = ''
$template_outputs = ''
$template_server = ''
$template_web = ''
$port = '8089'
$protocol = 'tcp'
### General variables that affect module's behaviour
# They can be set at top scope level or in a ENC
$my_class = ''
$source_dir = ''
$source_dir_purge = false
$options = ''
$absent = false
$disable = false
$disableboot = false
### General module variables that can have a site or per module default
# They can be set at top scope level or in a ENC
$monitor = false
$monitor_tool = ''
$monitor_target = $::ipaddress
$firewall = false
$firewall_tool = ''
$firewall_src = '0.0.0.0/0'
$firewall_dst = $::ipaddress
$puppi = false
$puppi_helper = 'standard'
$debug = false
$audit_only = false
}
|