1
name: the file
raw: cat "{{item}}"
with_items: "{{groups['firewall']}}"
when: inventory_hostname == item
register: output3
debug: var=output3.results
name: Copy File to Local Machine
local_action: lineinfile dest=/Users/{{inventory_hostname}} line="{{item}}"
with_dict: "{{ output3 }}"
output3.stdout_linesを広告申込情報にするにはどうすればよいですか?現在の方法では、私が望んでいないものすべてをコピーしています。stdout_linesを使用してファイル内の行に変数を渡すこと
ありがとうございました。 – ehuck