vn-ansible/playbooks/facts.yml

11 lines
245 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
ansible.builtin.debug:
var: ansible_facts
- name: Print variable value
debug:
msg: "Variable: {{ ansible_fqdn }}"