mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
647bf4eceb
Actual doc give this error ``` fatal: [localhost]: FAILED! => { "changed": false, "failed": true, "invocation": { "module_args": { "command": "facts", "register": "new_database_facts" }, "module_name": "rds" }, "msg": "unsupported parameter for module: register" } ``` Register should be at the module `rds` level and not at args level in this example : ``` - rds: command: facts instance_name: new-database - register: new_database_facts + register: new_database_facts ``` |
||
---|---|---|
.. | ||
ansible |