diff --git a/manifests/enterprise.pp b/manifests/enterprise.pp index fcd23dda..ec0e130c 100644 --- a/manifests/enterprise.pp +++ b/manifests/enterprise.pp @@ -192,6 +192,7 @@ Stdlib::Port $splunkd_port = $splunk::params::splunkd_port, Stdlib::Port $logging_port = $splunk::params::logging_port, Stdlib::Port $web_httpport = 8000, + Stdlib::Port $web_ssl = 0, Boolean $purge_alert_actions = false, Boolean $purge_authentication = false, Boolean $purge_authorize = false, diff --git a/manifests/enterprise/config.pp b/manifests/enterprise/config.pp index c6a9f50f..61215457 100644 --- a/manifests/enterprise/config.pp +++ b/manifests/enterprise/config.pp @@ -96,6 +96,12 @@ value => $splunk::enterprise::web_httpport, tag => 'splunk_server', } + splunk_web { 'splunk_server_web_ssl': + section => 'settings', + setting => 'enableSplunkWebSSL', + value => $splunk::enterprise::web_ssl, + tag => 'splunk_server', + } } File <| tag == 'splunk_enterprise' |> -> Splunk_alert_actions<||> ~> Class['splunk::enterprise::service']