From 05eccd9a1d98e213ad904b102a44164bd1d50d06 Mon Sep 17 00:00:00 2001 From: betanummeric <40263343+betanummeric@users.noreply.github.com> Date: Mon, 30 May 2022 09:59:20 +0200 Subject: [PATCH] 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 * Update plugins/modules/mysql_role.py Co-authored-by: Andrew Klychkov Co-authored-by: Felix Hamme Co-authored-by: Andrew Klychkov --- plugins/modules/mysql_role.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/plugins/modules/mysql_role.py b/plugins/modules/mysql_role.py index 97fabe8..790c0eb 100644 --- a/plugins/modules/mysql_role.py +++ b/plugins/modules/mysql_role.py @@ -258,6 +258,26 @@ EXAMPLES = r''' 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 = '''#'''