just_gather_facts.playbook.yaml 273 B

123456789101112
  1. ---
  2. - name: "Gather ansible_facts"
  3. hosts: all
  4. gather_facts: yes
  5. become: true
  6. # collections:
  7. # - ansible.posix
  8. tasks:
  9. - name: "msg print to stdout: Debug ansible_facts"
  10. debug:
  11. msg:
  12. - "{{ ansible_facts }}"