ansible.builtin.together 查询 – 将列表合并为同步列表
注意
此查询插件是 ansible-core
的一部分,包含在所有 Ansible 安装中。在大多数情况下,您可以使用简短的插件名称 together
。但是,我们建议您使用 完全限定的集合名称 (FQCN) ansible.builtin.together
以便于链接到插件文档,并避免与可能具有相同查询插件名称的其他集合发生冲突。
摘要
创建一个包含提供的列表的迭代元素的列表
为了用一个例子说明,[ ‘a’, ‘b’ ] 和 [ 1, 2 ] 变为 [ (‘a’,1), (‘b’, 2) ]
这基本上与 “zip_longest” 过滤器和 Python 函数相同
任何 “不平衡” 的元素都将被替换为 “None”
术语
参数 |
注释 |
---|---|
要合并的列表列表 |
示例
- name: item.0 returns from the 'a' list, item.1 returns from the '1' list
ansible.builtin.debug:
msg: "{{ item.0 }} and {{ item.1 }}"
with_together:
- ['a', 'b', 'c', 'd']
- [1, 2, 3, 4]
返回值
键 |
描述 |
---|---|
同步列表 返回:成功 |