2024-09-26 10:16:03 +00:00
|
|
|
- name: Gather facts from host
|
|
|
|
hosts: all
|
2024-09-23 14:32:28 +00:00
|
|
|
gather_facts: yes
|
|
|
|
tasks:
|
|
|
|
- name: Print all available facts
|
2024-09-27 11:26:47 +00:00
|
|
|
debug:
|
2024-09-23 14:32:28 +00:00
|
|
|
var: ansible_facts
|
|
|
|
- name: Print variable value
|
|
|
|
debug:
|
2024-09-24 10:20:42 +00:00
|
|
|
msg: "Variable: {{ ansible_fqdn }}"
|