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]
返回值
键 |
描述 |
---|---|
同步列表 返回: 成功 |