我正在尝试使用jinja2模板编写配置文件,并将文件另存为.json并将其格式化。
如何将输出文件保存为变量,然后使用to_nice_json将其格式化为JSON?这部剧是从另一部主剧本调用的角色的一部分。目前它将配置文件写入Windows主机,但它没有格式化为JSON。
---
#Write config file
- name: Deploy configuration file
template: src=templates/config.j2 dest="C:\\SomeDir\\
{{web_app.name}}_config.json"
答案 0 :(得分:2)
尝试模板查找:
- name: Deploy configuration file
win_copy:
content: "{{ lookup('template', 'templates/config.j2') | to_nice_json }}"
dest: "C:\\SomeDir\\{{web_app.name}}_config.json"