我目前正在学习jinja2,我不确定如何以正确的方式解决变量:
以下是我在yaml中的变量:
---
hosts:
app201.acme.com: {eth0: {ip: 46.0.0.1, netmask: 255.255.255.255}}
graphite.acme.com: {eth0: {ip: 46.0.0.2, netmask: 255.255.255.255},
eth0.1: {ip: 10.2.90.1, netmask: 255.255.255.255}}
这里是jinja2模板:
{{ fqdn }}
{% for interface in hosts[fqdn] %}
{{ interface }}
{{ hosts[fqdn].interface.ip }} << doesn't work
{{ hosts[fqdn].{{ interface }}.ip }} << doesn't work
{{ interface.ip }} << doesn't work
{% endfor %}
所以目前我的输出看起来像这样,因为我无法访问yaml hash的第二维。
graphite.acme.com eth0.1
的eth0
答案 0 :(得分:21)
变量hosts
是dict
。访问dict
中值的正确方法是使用[]
运算符。
{{ fqdn }}
{% for interface in hosts[fqdn] %}
{{ interface }}
{{ hosts[fqdn][interface]['ip'] }}
{% endfor %}
.
运算符用于访问对象的属性。