ansible_facts.fqdn.playbook.yaml 248 B

1234567891011
  1. ---
  2. - name: "Get ansible_facts.fqdn"
  3. hosts: all
  4. gather_facts: yes
  5. become: true
  6. # collections:
  7. # - ansible.posix
  8. tasks:
  9. - name: "get ansible_facts.fqdn"
  10. debug:
  11. msg: " {{ ansible_facts.fqdn }}"