You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
630 B

# BASE SETTINGS
[tcpout]
# Change here to specify the indexer group
defaultGroup = all_{{ splunk_app_prefix }}_indexer
forceTimebasedAutoLB = true
maxQueueSize = 7MB
useACK = true
[tcpout:all_{{ splunk_app_prefix }}_indexer]
{% if splunk_enableSSL %}
clientCert = $SPLUNK_HOME/etc/auth/servercertificate.pem
{% endif %}
server = {% for host in indexer_list %}{{ host }}:{{ splunk_s2s_port }}, {% endfor %}
{% if splunk_enableSSL %}
sslCommonNameToCheck = {% for host in groups.all_splunk_instances %}{{ host }}, {% endfor %}
sslPassword = {{ splunk_ssl_cert_password }}
sslVerifyServerCert = true
{% endif %}