diff --git a/playbooks/facts.yml b/playbooks/facts.yml index 0ccd652..1186947 100644 --- a/playbooks/facts.yml +++ b/playbooks/facts.yml @@ -2,9 +2,12 @@ hosts: all gather_facts: yes tasks: - - name: Print all available facts + - name: Print ansible facts debug: var: ansible_facts + - name: Print all variables + debug: + var: vars - name: Print variable value debug: msg: "Variable: {{ ansible_fqdn }}"