From ecf71dd720af01b484a8f7289b6e10a2a91f0d86 Mon Sep 17 00:00:00 2001 From: Andrey Klychkov Date: Tue, 15 Oct 2019 11:48:13 +0300 Subject: [PATCH] mysql_user: add seealso (#63497) --- lib/ansible/modules/database/mysql/mysql_user.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/ansible/modules/database/mysql/mysql_user.py b/lib/ansible/modules/database/mysql/mysql_user.py index be286b6797b..c79c1f8d8e8 100644 --- a/lib/ansible/modules/database/mysql/mysql_user.py +++ b/lib/ansible/modules/database/mysql/mysql_user.py @@ -103,6 +103,12 @@ notes: the file." - Currently, there is only support for the `mysql_native_password` encrypted password hash module. +seealso: +- module: mysql_info +- name: MySQL access control and account management reference + description: Complete reference of the MySQL access control and account management documentation. + link: https://dev.mysql.com/doc/refman/8.0/en/access-control.html + author: - Jonathan Mainguy (@Jmainguy) - Benjamin Malynovytch (@bmalynovytch)