mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 11:21:25 -07:00
fixed RETURN docs for modules (#24011)
* fixed RETURN docs for remaining modules * updated proxymysql_mysql_users 'sample' to yaml dict * fixed whitespace errors
This commit is contained in:
parent
9a0a7f78d7
commit
d1517f997a
40 changed files with 105 additions and 102 deletions
|
@ -148,26 +148,24 @@ stdout:
|
|||
returned: On create/update will return the newly modified user, on delete
|
||||
it will return the deleted record.
|
||||
type: dict
|
||||
sample": {
|
||||
"changed": true,
|
||||
"msg": "Added user to mysql_users",
|
||||
"state": "present",
|
||||
"user": {
|
||||
"active": "1",
|
||||
"backend": "1",
|
||||
"default_hostgroup": "1",
|
||||
"default_schema": null,
|
||||
"fast_forward": "0",
|
||||
"frontend": "1",
|
||||
"max_connections": "10000",
|
||||
"password": "VALUE_SPECIFIED_IN_NO_LOG_PARAMETER",
|
||||
"schema_locked": "0",
|
||||
"transaction_persistent": "0",
|
||||
"use_ssl": "0",
|
||||
"username": "guest_ro"
|
||||
},
|
||||
"username": "guest_ro"
|
||||
}
|
||||
sample:
|
||||
changed: true
|
||||
msg: Added user to mysql_users
|
||||
state: present
|
||||
user:
|
||||
active: 1
|
||||
backend: 1
|
||||
default_hostgroup: 1
|
||||
default_schema: null
|
||||
fast_forward: 0
|
||||
frontend: 1
|
||||
max_connections: 10000
|
||||
password: VALUE_SPECIFIED_IN_NO_LOG_PARAMETER
|
||||
schema_locked: 0
|
||||
transaction_persistent: 0
|
||||
use_ssl: 0
|
||||
username: guest_ro
|
||||
username: guest_ro
|
||||
'''
|
||||
|
||||
ANSIBLE_METADATA = {'metadata_version': '1.0',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue