ansible-playbook的template,好比 django的template,用法几乎一样,也就是把变量投射到模板中。
这里一个小坑,那就是使用for或者if条件的时候,需要把{%符号提到第一格,不留空格,否则下面的内容会错乱
filebeat.inputs:
- type: log
close_timeout: 5m
enabled: true
tail_files: true
paths:
{% for app in applist %}
- /app/{{app}}/log/{{app}}-trace.log
{% endfor %}
fields:
#if的 用法
{% if xxxxx %}
xxxxx
{% elif xxxx %}
xxxxx
{% endif %}