tweeks200 Asked: 2016-06-04 06:08:03 +0800 CST2016-06-04 06:08:03 +0800 CST 2016-06-04 06:08:03 +0800 CST 在ansible模板中组合组 772 有没有人在 ansible 模板中为循环组合组。我们想要做的是获取两个组的共同成员并循环它们以创建我们的配置。我们正在尝试在主机限制中有效但收到的相同格式'dict object' has no attribute 'tag_function_psql:&tag_release_dev' {% for host in groups['tag_function_psql:&tag_release_dev'] %} linux python ansible 1 个回答 Voted Best Answer udondan 2016-06-04T06:12:26+08:002016-06-04T06:12:26+08:00 Ansible 有intersect过滤器。请参阅集合理论过滤器。 {% for host in groups['tag_function_psql'] | intersect(groups['tag_release_dev']) %} ... {% endfor %} 我之前在stackoverflow上回答过这个
Ansible 有
intersect
过滤器。请参阅集合理论过滤器。我之前在stackoverflow上回答过这个