vn-ansible/playbooks/facts.yml

11 lines
229 B
YAML
Raw Normal View History

2024-10-16 15:53:15 +00:00
- name: Gather facts from host
hosts: all
gather_facts: yes
tasks:
- name: Print all available facts
debug:
var: ansible_facts
- name: Print variable value
debug:
msg: "Variable: {{ ansible_fqdn }}"