11 lines
229 B
YAML
11 lines
229 B
YAML
|
- 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 }}"
|