Hi,
I am an author of Ansible modules (e.g. https://github.com/zhmcclient/zhmc-ansible-modules) and would like to document whether a module supports check mode.
In modules written in Python, the module declares that at run time, e.g.
module = AnsibleModule(
argument_spec=argument_spec,
supports_check_mode=True)
but there is no corresponding declaration in the module DOCUMENTATION string (that I know of). Also, I do not know of a way to access that runtime declaration in the docs template that is used by the ansible doc extractor tool.
My question is: Is there a recommendation on how to document whether a module supports check mode?