21 lines
522 B
Text
21 lines
522 B
Text
|
---
|
||
|
{{ ansible_managed | comment}}
|
||
|
|
||
|
discovery.type: single-node
|
||
|
|
||
|
network.host: "{{ elasticsearch_address }}"
|
||
|
http.port: "{{ elasticsearch_port }}"
|
||
|
|
||
|
path.data: /var/lib/elasticsearch
|
||
|
path.logs: /var/log/elasticsearch
|
||
|
xpack.security.enabled: true
|
||
|
xpack.security.audit.enabled: true
|
||
|
|
||
|
# FIXME: on force l'activiation pour les clefs API (ça suffira pas
|
||
|
# si on est en production mode)
|
||
|
xpack.security.authc.api_key.enabled: true
|
||
|
|
||
|
# Désactivation de fonctionnalités inutiles.
|
||
|
# TODO: À compléter.
|
||
|
xpack.ml.enabled: false
|
||
|
...
|