--- # # All variables exposed to the Kibana role. # # # Role variables # # Allow 5601 though UFW ufw_server_port: false # systemd - enable Kibana on startup systemd_enabled: false # systemd - restart Kibana systemd_restart: false # # 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