mysql_user: Add REPLICA MONITOR privilege to supported (#108)

* mysql_user: Add REPLICA MONITOR privilege to supported

* Add changelog fragment
This commit is contained in:
Andrew Klychkov 2021-03-11 16:17:49 +01:00 committed by GitHub
parent fc2dd0079f
commit baea97d24c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- mysql_user - add support for ``REPLICA MONITOR`` privilege (https://github.com/ansible-collections/community.mysql/issues/105).

View file

@ -340,7 +340,9 @@ VALID_PRIVS = frozenset(('CREATE', 'DROP', 'GRANT', 'GRANT OPTION',
'REPLICATION MASTER ADMIN',
'REPLICATION SLAVE ADMIN',
'SET USER',
'SHOW_ROUTINE',))
'SHOW_ROUTINE',
'SLAVE MONITOR',
'REPLICA MONITOR',))
class InvalidPrivsError(Exception):