snippetbashTip
ansible-inventory — Display or dump an Ansible inventory. See also: `ansible`. More information: <https://docs.ansible.c
Viewed 0 times
ansible-inventoryansiblecommandclidumpinventoryseedisplay
Problem
How to use the
ansible-inventory command: Display or dump an Ansible inventory. See also: ansible. More information: <https://docs.ansible.com/projects/ansible/latest/cli/ansible-inventory.html>.Solution
ansible-inventory — Display or dump an Ansible inventory. See also: ansible. More information: <https://docs.ansible.com/projects/ansible/latest/cli/ansible-inventory.html>.Display the default inventory:
ansible-inventory --listDisplay a custom inventory:
ansible-inventory --list {{[-i|--inventory-file]}} {{path/to/file_or_script_or_directory}}Display the default inventory in YAML:
ansible-inventory --list {{[-y|--yaml]}}Dump the default inventory to a file:
ansible-inventory --list --output {{path/to/file}}Code Snippets
Display the default inventory
ansible-inventory --listDisplay a custom inventory
ansible-inventory --list {{[-i|--inventory-file]}} {{path/to/file_or_script_or_directory}}Display the default inventory in YAML
ansible-inventory --list {{[-y|--yaml]}}Dump the default inventory to a file
ansible-inventory --list --output {{path/to/file}}Context
tldr-pages: common/ansible-inventory
Revisions (0)
No revisions yet.