community.mysql.mysql_role module – Adds, removes, or updates a MySQL or MariaDB role
Note
This module is part of the community.mysql collection (version 3.16.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install community.mysql.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.mysql.mysql_role.
New in community.mysql 2.2.0
Synopsis
- Adds, removes, or updates a MySQL or MariaDB role. 
- Roles are supported since MySQL 8.0.0 and MariaDB 10.0.5. 
Requirements
The below requirements are needed on the host that executes this module.
- PyMySQL (Python 2.7 and Python 3.x) 
Parameters
| Parameter | Comments | 
|---|---|
| Supported by MariaDB. Name of the admin user of the role (the login_user, by default). | |
| Add members defined by the members option to the existing ones for this role instead of overwriting them. Mutually exclusive with the detach_members and admin option. Choices: 
 | |
| Append the privileges defined by the priv option to the existing ones for this role instead of overwriting them. Mutually exclusive with subtract_privs. Choices: 
 | |
| The path to a Certificate Authority (CA) certificate. This option, if used, must specify the same certificate as used by the server. | |
| Whether to validate the server host name when an SSL connection is required. Corresponds to MySQL CLIs  Setting this to  Requires pymysql >= 0.7.11. Choices: 
 | |
| Check if mysql allows login as root/nopassword before trying supplied credentials. If success, passed login_user/login_password will be ignored. Choices: 
 | |
| The path to a client public key certificate. | |
| The path to the client private key. | |
| The default is  When  When  Choices: 
 | |
| Specify a config file from which user and password are to be read. The default config file,  The default config file,  To prevent the default config file from being read, set config_file to be an empty string. Default:  | |
| The connection timeout when connecting to the MySQL server. Default:  | |
| Detaches members defined by the members option from the role instead of overwriting all the current members. Mutually exclusive with the append_members and admin option. Choices: 
 | |
| Host running the database. In some cases for local connections the login_unix_socket=/path/to/mysqld/socket, that is usually  Default:  | |
| The password used to authenticate with. | |
| Port of the MySQL server. Requires login_host be defined as other than localhost if login_port is used. Default:  | |
| The path to a Unix domain socket for local connections. Use this parameter to avoid the  | |
| The username used to authenticate with. | |
| List of members of the role. For users, use the format  For roles, use the format  Mutually exclusive with admin. | |
| When  When  Choices: 
 | |
| Name of the role to add or remove. | |
| MySQL privileges string in the format:  You can specify multiple privileges by separating each one using a forward slash:  The format is based on MySQL  Database and table names can be quoted, MySQL-style. If column privileges are used, the  Can be passed as a dictionary (see the examples). Supports GRANTs for procedures and functions (see the examples for the community.mysql.mysql_user module). | |
| Is not supported by MariaDB and is silently ignored when working with MariaDB. If  If you want to avoid this behavior, set this option to  Choices: 
 | |
| If  If  If  Choices: 
 | |
| Revoke the privileges defined by the priv option and keep other existing privileges. If set, invalid privileges in priv are ignored. Mutually exclusive with append_privs. Choices: 
 | 
Attributes
| Attribute | Support | Description | 
|---|---|---|
| Support: full | Can run in check_mode and return changed status prediction without modifying target. | 
Notes
Note
- Roles are supported since MySQL 8.0.0 and MariaDB 10.0.5. 
- Pay attention that the module runs - SET DEFAULT ROLE ALL TOall the members passed by default when the state has changed. If you want to avoid this behavior, set set_default_role_all to- no.
- Requires the PyMySQL (Python 2.7 and Python 3.X) package installed on the remote host. The Python package may be installed with apt-get install python-pymysql (Ubuntu; see ansible.builtin.apt) or yum install python2-PyMySQL (RHEL/CentOS/Fedora; see ansible.builtin.yum). You can also use dnf install python2-PyMySQL for newer versions of Fedora; see ansible.builtin.dnf. 
- Be sure you have PyMySQL library installed on the target machine for the Python interpreter Ansible discovers. For example if ansible discovers and uses Python 3, you need to install the Python 3 version of PyMySQL. If ansible discovers and uses Python 2, you need to install the Python 2 version of PyMySQL. 
- If you have trouble, it may help to force Ansible to use the Python interpreter you need by specifying - ansible_python_interpreter. For more information, see https://docs.ansible.com/ansible/latest/reference_appendices/interpreter_discovery.html.
- Both - login_passwordand- login_userare required when you are passing credentials. If none are present, the module will attempt to read the credentials from- ~/.my.cnf, and finally fall back to using the MySQL default login of ‘root’ with no password.
- If there are problems with local connections, using login_unix_socket=/path/to/mysqld/socket instead of login_host=localhost might help. As an example, the default MariaDB installation of version 10.4 and later uses the unix_socket authentication plugin by default that without using login_unix_socket=/var/run/mysqld/mysqld.sock (the default path) causes the error ``Host ‘127.0.0.1’ is not allowed to connect to this MariaDB server``. 
- If credentials from the config file (for example, - /root/.my.cnf) are not needed to connect to a database server, but the file exists and does not contain a- [client]section, before any other valid directives, it will be read and this will cause the connection to fail, to prevent this set it to an empty string, (for example- config_file: '').
- To avoid the - Please explicitly state intended protocolerror, use the login_unix_socket argument, for example,- login_unix_socket: /run/mysqld/mysqld.sock.
- Alternatively, to avoid using login_unix_socket argument on each invocation you can specify the socket path using the `socket` option in your MySQL config file (usually - ~/.my.cnf) on the destination host, for example- socket=/var/lib/mysql/mysql.sock.
See Also
See also
- community.mysql.mysql_user
- Adds or removes a user from a MySQL or MariaDB database. 
- MySQL role reference
- Complete reference of the MySQL role documentation. 
Examples
# If you encounter the "Please explicitly state intended protocol" error,
# use the login_unix_socket argument, for example, login_unix_socket: /run/mysqld/mysqld.sock
# Example of a .my.cnf file content for setting a root password
# [client]
# user=root
# password=n<_665{vS43y
#
# Example of a privileges dictionary passed through the priv option
# priv:
#   'mydb.*': 'INSERT,UPDATE'
#   'anotherdb.*': 'SELECT'
#   'yetanotherdb.*': 'ALL'
#
# You can also use the string format like in the community.mysql.mysql_user module, for example
# mydb.*:INSERT,UPDATE/anotherdb.*:SELECT/yetanotherdb.*:ALL
#
# For more examples on how to specify privileges, refer to the community.mysql.mysql_user module
# Create a role developers with all database privileges
# and add alice and bob as members.
# The statement 'SET DEFAULT ROLE ALL' to them will be run.
- name: Create role developers, add members
  community.mysql.mysql_role:
    name: developers
    state: present
    priv: '*.*:ALL'
    members:
    - 'alice@%'
    - 'bob@%'
- name: Same as above but do not run SET DEFAULT ROLE ALL TO each member
  community.mysql.mysql_role:
    name: developers
    state: present
    priv: '*.*:ALL'
    members:
    - 'alice@%'
    - 'bob@%'
    set_default_role_all: false
# Assuming that the role developers exists,
# add john to the current members
- name: Add members to an existing role
  community.mysql.mysql_role:
    name: developers
    state: present
    append_members: true
    members:
    - 'joe@localhost'
# Create role readers with the SELECT privilege
# on all tables in the fiction database
- name: Create role developers, add members
  community.mysql.mysql_role:
    name: readers
    state: present
    priv: 'fiction.*:SELECT'
# Assuming that the role readers exists,
# add the UPDATE privilege to the role on all tables in the fiction database
- name: Create role developers, add members
  community.mysql.mysql_role:
    name: readers
    state: present
    priv: 'fiction.*:UPDATE'
    append_privs: true
- name: Create role with the 'SELECT' and 'UPDATE' privileges in db1 and db2
  community.mysql.mysql_role:
    state: present
    name: foo
    priv:
      'db1.*': 'SELECT,UPDATE'
      'db2.*': 'SELECT,UPDATE'
- name: Remove joe from readers
  community.mysql.mysql_role:
    state: present
    name: readers
    members:
    - 'joe@localhost'
    detach_members: true
- name: Remove the role readers if exists
  community.mysql.mysql_role:
    state: absent
    name: readers
- name: Example of using login_unix_socket to connect to the server
  community.mysql.mysql_role:
    name: readers
    state: present
    login_unix_socket: /var/run/mysqld/mysqld.sock
# Pay attention that the admin cannot be changed later
# and will be ignored if a role currently exists.
# To change members, you need to run a separate task using the admin
# of the role as the login_user.
- name: On MariaDB, create the role readers with alice as its admin
  community.mysql.mysql_role:
    state: present
    name: readers
    admin: 'alice@%'
- name: Create the role business, add the role marketing to members
  community.mysql.mysql_role:
    state: present
    name: business
    members:
    - marketing
- name: Ensure the role foo does not have the DELETE privilege
  community.mysql.mysql_role:
    state: present
    name: foo
    subtract_privs: true
    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: true
    members_must_exist: false
    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: true
    members_must_exist: false
    members:
    - 'existing_user@localhost'
    - 'not_existing_user@localhost'
