vn-ansible/playbooks/facts.yml

11 lines
238 B
YAML

- name: Gather facts from host and print all variables
hosts: all
gather_facts: yes
tasks:
- name: Print all variables
debug:
var: vars
- name: Print variable value
debug:
msg: "Variable: {{ ansible_fqdn }}"