include_vars
执行with后我得到了一系列结果with_items
results:
- ansible_facts:
tag_Cluster_A:
name: Thinking cluster
words:
- Honk
- Thonk
- ansible_facts:
tag_Cluster_B:
name: Helloing Cluster
words:
- HOI
- HOI HOI
我正在尝试将带有结果的对象放到一个仅包含这些tag_Cluster_*
东西的平面对象中。
tag_Cluster_A:
name: Thinking cluster
words:
- Honk
- Thonk
tag_Cluster_B:
name: Helloing Cluster
words:
- HOI
- HOI HOI
查询results[].ansible_facts
结果是一个数组,例如:
[{tag_Cluster_A:{}},{tag_Cluster_B:{}}]
距离期望结果只有 1 步。
我如何将这些组合在一起?