Hello,
I create module in file /library/module.py with this content :
#!/usr/bin/python
-- coding: utf-8 --
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.parsing.convert_bool import BOOLEANS
DOCUMENTATION = ‘’’
Hello,
I create module in file /library/module.py with this content :
#!/usr/bin/python
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.parsing.convert_bool import BOOLEANS
DOCUMENTATION = ‘’’
Worth running with -vvvvv to see if there is any more information to help you debug the problem.
Try this syntax as my guess is ansible is looking for a module called ‘module’ instead of your custome ‘mssql_query’ module
`
`
Hope this helps,
Jon