12 lines
270 B
YAML
12 lines
270 B
YAML
|
---
|
||
|
# 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]
|