From 6d10ea6eee182b4984902e9b406a236047e21111 Mon Sep 17 00:00:00 2001 From: Cyril Brulebois Date: Tue, 8 Aug 2023 21:32:09 +0200 Subject: [PATCH] Fix missing newline before a list (#257) (cherry picked from commit 1f1f6cf9791dfd79eb38de211797791924f01330) --- docs/docsite/rst/inventory_guide/intro_inventory.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/docsite/rst/inventory_guide/intro_inventory.rst b/docs/docsite/rst/inventory_guide/intro_inventory.rst index 59d56a18685..33b5fe96bae 100644 --- a/docs/docsite/rst/inventory_guide/intro_inventory.rst +++ b/docs/docsite/rst/inventory_guide/intro_inventory.rst @@ -12,6 +12,7 @@ The simplest inventory is a single file with a list of hosts and groups. The def You can specify a different inventory file at the command line using the ``-i `` option or in configuration using ``inventory``. Ansible :ref:`inventory_plugins` support a range of formats and sources to make your inventory flexible and customizable. As your inventory expands, you may need more than a single file to organize your hosts and groups. Here are three options beyond the ``/etc/ansible/hosts`` file: + - You can create a directory with multiple inventory files. See :ref:`inventory_directory`. These can use different formats (YAML, ini, and so on). - You can pull inventory dynamically. For example, you can use a dynamic inventory plugin to list resources in one or more cloud providers. See :ref:`intro_dynamic_inventory`. - You can use multiple sources for inventory, including both dynamic inventory and static files. See :ref:`using_multiple_inventory_sources`.