我正在制作一本Ansible剧本,在模板中我需要替换一个变量,这是一个字典列表。
任务文件如下:
vars:
locations:
- context: "/rest"
server: "http://locahost:8080;"
- context: "/api"
server: "http://localhost:9090;"
tasks:
- name: testing the template
template:
src: ./conf.j2
dest: /tmp/test.conf
with_items: '{{ locations }}'
我需要替换模板中的locations
。所以模板如下:
{% for location in item %}
location {{ location['context'] }}
proxy_pass {{ location['server'] }}
{% endfor %}
我期待输出如下:
location /rest
proxy_pass http://localhost:8080
location /api
proxy_pass htpp://localhost:9090
但是我很难让替换正确,任何人都可以帮助指出我在哪里犯了错误。
我得到的错误是
failed: [127.0.0.1] (item={u'context': u'/rest', u'server':
u'http://localhost:9090;'}) => {"failed": true, "item": {"context":
"/rest", "server": "http://localhost:8080;"}, "msg":
"AnsibleUndefinedVariable: 'context' is undefined"}
failed: [127.0.0.1] (item={u'context': u'/api', u'server':
u'http://locahost:8080;'}) => {"failed": true, "item": {"context":
"/api", "server": "http://locahost:9090;"}, "msg":
"AnsibleUndefinedVariable: 'context' is undefined"}
答案 0 :(得分:1)
此时,由于with_items
,您正在传递locations
列表的各个元素,因此在第一次迭代中,item
成为以下字典:
context: "/rest"
server: "http://locahost:8080;"
然后在模板中尝试将此字典作为列表进行迭代(使用for
)。
您需要决定是否要在模板外部(创建多个文件)或内部(创建单个文件)循环。
您的案例与后者相似,因此您无需使用with_items
:
- name: testing the template
template:
src: ./conf.j2
dest: /tmp/test.conf
使用模板:
{% for location in locations %}
location {{ location['context'] }}
proxy_pass {{ location['server'] }}
{% endfor %}
你忽略了我在预期输出结束时丢失分号的问题,所以请自己处理。