docs/docsite/rst/dev_guide/developing_modules.rst
.. _developing_modules: .. _module_dev_should_you:
Should you develop a module?
Developing Ansible modules is easy, but often it is not necessary. Before you start writing a new module, ask:
An existing module may cover the functionality you want. Ansible collections include thousands of modules. Search our :ref:list of included collections <list_of_collections> or Ansible Galaxy <https://galaxy.ansible.com>_ to see if an existing module does what you need.
An action plugin may be the best way to get the functionality you want. Action plugins run on the control node instead of on the managed node, and their functionality is available to all modules. For more information about developing plugins, read the :ref:developing plugins page <developing_plugins>.
A combination of existing modules may cover the functionality you want. You can write a role for this type of use case. Check out the :ref:roles documentation<playbooks_reuse_roles>.
The functionality you want may be too large for a single module. If you want to connect Ansible to a new cloud provider, database, or network platform, you may need to :ref:develop a new collection<developing_modules_in_groups>.
Each module should have a concise and well defined functionality. Basically, follow the UNIX philosophy of doing one thing well.
A module should not require that a user know all the underlying options of an API/tool to be used. For example, if the legal values for a required module parameter cannot be documented, that's a sign that the module would be rejected.
Modules should typically encompass much of the logic for interacting with a resource. A lightweight wrapper around an API that does not contain much logic would likely cause users to offload too much logic into a playbook, and for this reason the module would be rejected. Instead try creating multiple modules for interacting with smaller individual pieces of the API.
If your use case isn't covered by an existing module, an action plugin, or a role, and you don't need to create multiple modules, then you're ready to start developing a new module. Choose from the topics below for next steps:
get started on a new module <developing_modules_general>.tips and conventions for developing good modules <developing_modules_best_practices>.write a Windows module <developing_modules_general_windows>.an overview of Ansible's architecture <developing_program_flow_modules>.document my module <developing_modules_documenting>.contribute my module to an existing Ansible collection <developing_modules_checklist>.add unit and integration tests to my module <developing_testing>.add Python 3 support to my module <developing_python_3>.write multiple modules <developing_modules_in_groups>... seealso::
:ref:list_of_collections
Browse existing collections, modules, and plugins
:ref:Communication<communication>
Got questions? Need help? Want to share your ideas? Visit the Ansible communication guide