0 votes
in Ansible by
How to list available modules and their descriptions/explanation in Ansible?

1 Answer

0 votes
by

 Ansible shipped modules can be list using command ‘ansible-doc -l’. Ansible-doc command is like Linux man command which can be used to see the explanation and arguments of any specific module. To see details of module ‘file’, we can use ‘ansible-doc file’ command. 

...