mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
35 lines
844 B
YAML
35 lines
844 B
YAML
kibana:
|
|
enabled: True
|
|
config:
|
|
server:
|
|
name: kibana
|
|
host: "0.0.0.0"
|
|
basePath: /kibana
|
|
publicBaseUrl: https://{{salt['pillar.get']('global:url_base')}}/kibana
|
|
elasticsearch:
|
|
hosts:
|
|
- https://{{salt['pillar.get']('manager:mainip')}}:9200
|
|
ssl:
|
|
verificationMode: none
|
|
requestTimeout: 90000
|
|
logging:
|
|
appenders:
|
|
file:
|
|
type: file
|
|
fileName: /var/log/kibana/kibana.log
|
|
layout:
|
|
type: pattern
|
|
root:
|
|
appenders:
|
|
- default
|
|
- file
|
|
telemetry:
|
|
enabled: False
|
|
security:
|
|
showInsecureClusterWarning: False
|
|
xpack:
|
|
ml:
|
|
enabled: False
|
|
encryptedSavedObjects:
|
|
encryptionKey: {{ pillar['kibana']['secrets']['encryptedSavedObjects']['encryptionKey'] }}
|