vn-ansible/playbooks/facts.yml

11 lines
238 B
YAML
Raw Normal View History

2025-02-06 09:08:56 +00:00
- name: Gather facts from host and print all variables
2024-10-16 15:53:15 +00:00
hosts: all
gather_facts: yes
tasks:
2025-02-06 09:01:32 +00:00
- name: Print all variables
debug:
var: vars
2024-10-16 15:53:15 +00:00
- name: Print variable value
debug:
msg: "Variable: {{ ansible_fqdn }}"