11 lines
344 B
YAML
11 lines
344 B
YAML
---
|
|
# Copyright (C) 2015-2016 Maciej Delmanowski <drybjed@gmail.com>
|
|
# Copyright (C) 2015-2016 DebOps <https://debops.org/>
|
|
# SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
- name: Debug host variables
|
|
hosts: all
|
|
tasks:
|
|
- name: Display all variables/facts known for a host
|
|
ansible.builtin.debug:
|
|
var: hostvars[inventory_hostname]
|