mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
mysql_user: prevent password getting set for existing users on on_cre… (#342)
* mysql_user: prevent password getting set for existing users on on_create when plugin is used * added changelog fragment * format fix * added substract_privs, to t list of arguments * clarify the documetation * additional documentation to password,plugin,plugin_hash_string,plugin_auth_string options, format fix on changelog * Update plugins/modules/mysql_user.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/mysql_user.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/modules/mysql_user.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * linting * linting * linting * linting Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
This commit is contained in:
parent
05eccd9a1d
commit
51a38840d9
2 changed files with 7 additions and 4 deletions
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- "mysql_user - fix logic when ``update_password`` is set to ``on_create`` for users using ``plugin*`` arguments (https://github.com/ansible-collections/community.mysql/issues/334). The ``on_create`` sets ``password`` to None for old mysql_native_authentication but not for authentiation methods which uses the ``plugin*`` arguments. This PR changes this so ``on_create`` also exchange ``plugin``, ``plugin_hash_string``, ``plugin_auth_string`` to None in the list of arguments to change"
|
|
@ -22,7 +22,8 @@ options:
|
||||||
required: true
|
required: true
|
||||||
password:
|
password:
|
||||||
description:
|
description:
|
||||||
- Set the user's password.
|
- Set the user's password. Only for C(mysql_native_password) authentication.
|
||||||
|
For other authentication plugins see the combination of I(plugin), I(plugin_hash_string), I(plugin_auth_string).
|
||||||
type: str
|
type: str
|
||||||
encrypted:
|
encrypted:
|
||||||
description:
|
description:
|
||||||
|
@ -115,8 +116,8 @@ options:
|
||||||
default: no
|
default: no
|
||||||
update_password:
|
update_password:
|
||||||
description:
|
description:
|
||||||
- C(always) will update passwords if they differ.
|
- C(always) will update passwords if they differ. This affects I(password) and the combination of I(plugin), I(plugin_hash_string), I(plugin_auth_string).
|
||||||
- C(on_create) will only set the password for newly created users.
|
- C(on_create) will only set the password or the combination of plugin, plugin_hash_string, plugin_auth_string for newly created users.
|
||||||
type: str
|
type: str
|
||||||
choices: [ always, on_create ]
|
choices: [ always, on_create ]
|
||||||
default: always
|
default: always
|
||||||
|
@ -456,7 +457,7 @@ def main():
|
||||||
priv, append_privs, subtract_privs, tls_requires, module)
|
priv, append_privs, subtract_privs, tls_requires, module)
|
||||||
else:
|
else:
|
||||||
changed, msg = user_mod(cursor, user, host, host_all, None, encrypted,
|
changed, msg = user_mod(cursor, user, host, host_all, None, encrypted,
|
||||||
plugin, plugin_hash_string, plugin_auth_string,
|
None, None, None,
|
||||||
priv, append_privs, subtract_privs, tls_requires, module)
|
priv, append_privs, subtract_privs, tls_requires, module)
|
||||||
|
|
||||||
except (SQLParseError, InvalidPrivsError, mysql_driver.Error) as e:
|
except (SQLParseError, InvalidPrivsError, mysql_driver.Error) as e:
|
||||||
|
|
Loading…
Add table
Reference in a new issue