mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Remove camel_dict_to_snake_dict as this was breaking the module itself - the result is a list
This commit is contained in:
parent
b0c49c7141
commit
2e35d5716b
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ def main():
|
||||||
|
|
||||||
results = get_nat_gateways(connection, module)
|
results = get_nat_gateways(connection, module)
|
||||||
|
|
||||||
module.exit_json(result=camel_dict_to_snake_dict(results))
|
module.exit_json(result=results)
|
||||||
|
|
||||||
# import module snippets
|
# import module snippets
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import *
|
||||||
|
|
Loading…
Reference in a new issue