vn-ansible/playbooks/facts.yml

11 lines
229 B
YAML
Raw Normal View History

- name: Gather facts from host
hosts: all
2024-09-23 14:32:28 +00:00
gather_facts: yes
tasks:
- name: Print all available facts
debug:
2024-09-23 14:32:28 +00:00
var: ansible_facts
- name: Print variable value
debug:
msg: "Variable: {{ ansible_fqdn }}"