Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mysql_role: add examples for "members_must_exist" argument #376

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions plugins/modules/mysql_role.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,26 @@
subtract_privs: yes
priv:
'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 = '''#'''
Expand Down