mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
mysql_user: clarify behavior of priv parameter (#319)
This commit is contained in:
parent
e6e661b87f
commit
5afae459dc
1 changed files with 6 additions and 1 deletions
|
@ -45,7 +45,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- "MySQL privileges string in the format: C(db.table:priv1,priv2)."
|
- "MySQL privileges string in the format: C(db.table:priv1,priv2)."
|
||||||
- "Multiple privileges can be specified by separating each one using
|
- "Multiple privileges can be specified by separating each one using
|
||||||
a forward slash: C(db.table:priv/db.table:priv)."
|
a forward slash: C(db.table1:priv/db.table2:priv)."
|
||||||
- The format is based on MySQL C(GRANT) statement.
|
- The format is based on MySQL C(GRANT) statement.
|
||||||
- Database and table names can be quoted, MySQL-style.
|
- Database and table names can be quoted, MySQL-style.
|
||||||
- If column privileges are used, the C(priv1,priv2) part must be
|
- If column privileges are used, the C(priv1,priv2) part must be
|
||||||
|
@ -54,6 +54,11 @@ options:
|
||||||
by permission (C(SELECT(col1,col2)) instead of C(SELECT(col1),SELECT(col2))).
|
by permission (C(SELECT(col1,col2)) instead of C(SELECT(col1),SELECT(col2))).
|
||||||
- Can be passed as a dictionary (see the examples).
|
- Can be passed as a dictionary (see the examples).
|
||||||
- Supports GRANTs for procedures and functions (see the examples).
|
- Supports GRANTs for procedures and functions (see the examples).
|
||||||
|
- "Note: If you pass the same C(db.table) combination to this parameter
|
||||||
|
two or more times with different privileges,
|
||||||
|
for example, C('*.*:SELECT/*.*:SHOW VIEW'), only the last one will be applied,
|
||||||
|
in this example, it will be C(SHOW VIEW) respectively.
|
||||||
|
Use C('*.*:SELECT,SHOW VIEW') instead to apply both."
|
||||||
type: raw
|
type: raw
|
||||||
append_privs:
|
append_privs:
|
||||||
description:
|
description:
|
||||||
|
|
Loading…
Add table
Reference in a new issue