Ansible/roles/kibana/defaults/main.yml

40 lines
895 B
YAML
Raw Normal View History

2019-04-26 12:35:26 -07:00
---
#
# All variables exposed to the Kibana role.
#
#
# Role variables
#
# Allow 5601 though UFW
ufw_server_port: false
2019-04-26 12:35:26 -07:00
# systemd - enable Kibana on startup
systemd_enabled: false
# systemd - restart Kibana
systemd_restart: false
2019-04-26 12:35:26 -07:00
#
# Configuration file variables
#
# Defines that port that Kibana will listen on
# Default: 5601
server_port: 5601
# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
# The default is 'localhost', which usually means remote machines will not be able to connect.
# To allow connections from remote users, set this parameter to a non-loopback address.
server_host: localhost
# The Kibana server's name. This is used for display purposes.
server_name: {{ ansible_hostname }}
# The URLs of the Elasticsearch instances to use for all your queries.
elasticsearch_hosts:
- localhost
- server02