You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting_started/how-to-use/advanced.rst
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -224,7 +224,7 @@ To make this possible, every module accepts the ``query_params`` argument. This
224
224
you want to use to search for the object.
225
225
226
226
Let's start with another example. We will continue to use :ref:`netbox.netbox.netbox_ip_address<ansible_collections.netbox.netbox.netbox_ip_address_module>`. We created **192.168.100.1/24** as a duplicate IP address within
227
-
the global IP address space within NetBox. This task should fail saying there was more than result returned.
227
+
the global IP address space within NetBox. This task should fail saying there was more than one result returned.
228
228
229
229
.. code-block:: yaml
230
230
@@ -304,7 +304,9 @@ Hopefully this shines some light on this useful feature to allow you, as the use
304
304
Using Module defaults groups
305
305
--------------------------------------------
306
306
307
-
Ansible-core >= 2.12 provide a useful feature called [Module defaults groups](https://docs.ansible.com/ansible/latest/user_guide/playbooks_module_defaults.html#module-defaults-groups) that lets us specify default parameters for a group of modules in a single place. We can use the action_group ``netbox`` that contains all modules from this collection to avoid setting e.g. ``token`` and ``url`` on each task and thus reduce boilerplate code.
307
+
Ansible-core >= 2.12 provide a useful feature called `Module defaults groups`_ that lets us specify default parameters for a group of modules in a single place. We can use the action_group ``netbox`` that contains all modules from this collection to avoid setting e.g. ``token`` and ``url`` on each task and thus reduce boilerplate code.
0 commit comments