Puppet Class: splunk::params

Inherited by:
splunk
Defined in:
manifests/params.pp

Overview



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'manifests/params.pp', line 1

class splunk::params {
  $configure_outputs = true
  $index             = 'os'
  $index_hash        = { }
  $nagios_contacts   = undef
  $splunkadmin       = ':admin:$1$QfZoXMjP$jafmv2ASM45lllqaXHeXv/::Administrator:admin:changeme@example.com:'
  $target_group      = { example1 => 'server1.example.com',
                        example2 => 'server2.example.com' }
  $type              = 'uf'
  $localusers        = undef
  $output_hash       = { }
  $port              = '9997'
  $proxyserver       = undef
  $purge             = undef
  $version           = 'installed'

  if $::mode == maintenance {
    $service_ensure = 'stopped'
    $service_enable = false
  } else {
    $service_ensure = 'running'
    $service_enable = true
  }
}