mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
mysql_role: add examples for "members_must_exist" argument (#376)
* mysql_role: add examples for "members_must_exist" argument * mysql_role: fix syntax in example * Update plugins/modules/mysql_role.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/mysql_role.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> Co-authored-by: Felix Hamme <felix.hamme@ionos.com> Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
This commit is contained in:
parent
bf5086d19d
commit
05eccd9a1d
1 changed files with 20 additions and 0 deletions
|
@ -258,6 +258,26 @@ EXAMPLES = r'''
|
||||||
subtract_privs: yes
|
subtract_privs: yes
|
||||||
priv:
|
priv:
|
||||||
'db1.*': DELETE
|
'db1.*': DELETE
|
||||||
|
|
||||||
|
- name: Add some members to a role and skip not-existent users
|
||||||
|
community.mysql.mysql_role:
|
||||||
|
state: present
|
||||||
|
name: foo
|
||||||
|
append_members: yes
|
||||||
|
members_must_exist: no
|
||||||
|
members:
|
||||||
|
- 'existing_user@localhost'
|
||||||
|
- 'not_existing_user@localhost'
|
||||||
|
|
||||||
|
- name: Detach some members from a role and ignore not-existent users
|
||||||
|
community.mysql.mysql_role:
|
||||||
|
state: present
|
||||||
|
name: foo
|
||||||
|
detach_members: yes
|
||||||
|
members_must_exist: no
|
||||||
|
members:
|
||||||
|
- 'existing_user@localhost'
|
||||||
|
- 'not_existing_user@localhost'
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = '''#'''
|
RETURN = '''#'''
|
||||||
|
|
Loading…
Add table
Reference in a new issue