12 lines
270 B
YAML
Raw Normal View History

2025-01-07 22:17:39 +00:00
---
# Playbook to debug and display variables
- name: Display all variables/facts known for a host
hosts: all
become: no
tasks:
- name: Display all variables/facts known for a host
tags: debug_info
debug:
var: hostvars[inventory_hostname]