我在ansible中遇到了模板的一些问题。我无法访问文件中定义的模板中的 ansible 变量。这是我的模板代码:
{% for count in range(1,{{ total_count }}) %}
- tmp_{{ build_type }}_{{ count }}
{% endfor %}
total_count
并build_type
在 ansible playbook 中包含的文件中定义。
非常感谢任何帮助。
我在ansible中遇到了模板的一些问题。我无法访问文件中定义的模板中的 ansible 变量。这是我的模板代码:
{% for count in range(1,{{ total_count }}) %}
- tmp_{{ build_type }}_{{ count }}
{% endfor %}
total_count
并build_type
在 ansible playbook 中包含的文件中定义。
非常感谢任何帮助。