forked from ISTI-ansible-roles/ansible-roles
elasticsearch: fix the 'transport.tcp.port' arguments syntax.
This commit is contained in:
parent
75f8f92822
commit
1f7d7ac082
|
@ -80,7 +80,7 @@ http.port: {{ elasticsearch_http_port }}
|
||||||
# by default transport.host refers to network.host
|
# by default transport.host refers to network.host
|
||||||
transport.host: {{ elasticsearch_bind_ip }}
|
transport.host: {{ elasticsearch_bind_ip }}
|
||||||
{% if elasticsearch_major_version >= 6 %}
|
{% if elasticsearch_major_version >= 6 %}
|
||||||
transport.tcp.port: {{ elasticsearch_transport_min_port }} - {{ elasticsearch_transport_max_port }}
|
transport.tcp.port: {{ elasticsearch_transport_min_port }}-{{ elasticsearch_transport_max_port }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
#
|
#
|
||||||
# For more information, see the documentation at:
|
# For more information, see the documentation at:
|
||||||
|
|
Loading…
Reference in New Issue