Files
ansible-docs/docs/docsite/rst/plugins/module.rst
Andrew Klychkov bf86a30bef Replace communication links with a link to communication guide, part 2 (#1864)
* Replace old communication refs with Communication guide ref or forum

* Update docs/docsite/rst/community/documentation_contributions.rst

Co-authored-by: Felix Fontein <felix@fontein.de>

---------

Co-authored-by: Felix Fontein <felix@fontein.de>
2024-09-12 09:41:36 +02:00

42 lines
1.3 KiB
ReStructuredText

.. _module_plugins:
Modules
=======
.. contents::
:local:
:depth: 2
Modules are the main building blocks of Ansible playbooks. Although we do not generally speak of "module plugins", a module is a type of plugin. For a developer-focused description of the differences between modules and other plugins, see :ref:`modules_vs_plugins`.
.. _enabling_modules:
Enabling modules
----------------
You can enable a custom module by dropping it into one of these locations:
* any directory added to the ``ANSIBLE_LIBRARY`` environment variable (``$ANSIBLE_LIBRARY`` takes a colon-separated list like ``$PATH``)
* ``~/.ansible/plugins/modules/``
* ``/usr/share/ansible/plugins/modules/``
For more information on using local custom modules, see :ref:`local_modules`.
.. _using_modules:
Using modules
-------------
For information on using modules in ad hoc tasks, see :ref:`intro_adhoc`. For information on using modules in playbooks, see :ref:`playbooks_intro`.
.. seealso::
:ref:`about_playbooks`
An introduction to playbooks
:ref:`developing_modules_general`
An introduction to creating Ansible modules
:ref:`developing_collections`
A guide to creating Ansible collections
:ref:`Communication<communication>`
Got questions? Need help? Want to share your ideas? Visit the Ansible communication guide