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 ステップ離れています。
これらを一緒にスムーズにするにはどうすればよいですか?