2021-04-16 02:47:12 +01:00
|
|
|
# ansible-inventory
|
|
|
|
|
|
|
|
> Display or dump an Ansible inventory.
|
|
|
|
> See also: `ansible`.
|
|
|
|
> More information: <https://docs.ansible.com/ansible/latest/cli/ansible-inventory.html>.
|
|
|
|
|
|
|
|
- Display the default inventory:
|
|
|
|
|
|
|
|
`ansible-inventory --list`
|
|
|
|
|
|
|
|
- Display a custom inventory:
|
|
|
|
|
2023-12-27 06:22:49 +00:00
|
|
|
`ansible-inventory --list --inventory {{path/to/file_or_script_or_directory}}`
|
2021-04-16 02:47:12 +01:00
|
|
|
|
|
|
|
- Display the default inventory in YAML:
|
|
|
|
|
|
|
|
`ansible-inventory --list --yaml`
|
|
|
|
|
|
|
|
- Dump the default inventory to a file:
|
|
|
|
|
|
|
|
`ansible-inventory --list --output {{path/to/file}}`
|