summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Coca <bcoca@ansible.com>2014-12-15 17:56:25 -0500
committerBrian Coca <bcoca@ansible.com>2014-12-15 17:56:25 -0500
commit8908f4a0efe015c303758fa736acb741cd072e47 (patch)
treeaac0cfa7b511a94ee9493d5065a201b913d5cfd3
parent88443d6dcfe3201717d0b3b296d04450103fbf83 (diff)
parentd50dc45cd4ddc20f0be0cd9b0225778a40116c14 (diff)
downloadansible-8908f4a0efe015c303758fa736acb741cd072e47.tar.gz
Merge pull request #7214 from lorin/dyn-inv-doc
Document static groups of dynamic groups
-rw-r--r--docsite/rst/intro_dynamic_inventory.rst20
1 files changed, 20 insertions, 0 deletions
diff --git a/docsite/rst/intro_dynamic_inventory.rst b/docsite/rst/intro_dynamic_inventory.rst
index e6743c100e..ddb452e775 100644
--- a/docsite/rst/intro_dynamic_inventory.rst
+++ b/docsite/rst/intro_dynamic_inventory.rst
@@ -225,6 +225,26 @@ If the location given to -i in Ansible is a directory (or as so configured in an
at the same time. When doing so, it is possible to mix both dynamic and statically managed inventory sources in the same ansible run. Instant
hybrid cloud!
+.. _static_groups_of_dynamic:
+
+Static Groups of Dynamic Groups
+```````````````````````````````
+
+When defining groups of groups in the static inventory file, the child groups
+must also be defined in the static inventory file, or ansible will return an
+error. If you want to define a static group of dynamic child groups, define
+the dynamic groups as empty in the static inventory file. For example::
+
+ [tag_Name_staging_foo]
+
+ [tag_Name_staging_bar]
+
+ [staging:children]
+ tag_Name_staging_foo
+ tag_Name_staging_bar
+
+
+
.. seealso::
:doc:`intro_inventory`