playbook_gather_facts.yml 221 B

1234567891011
  1. ---
  2. - name: "Gather facts playbook"
  3. hosts: "workstations"
  4. tasks:
  5. - name: "gathering facts"
  6. ansible.builtin.gather_facts:
  7. - name: "debug"
  8. ansible.builtin.debug:
  9. msg: "{{ ansible_facts }}"