mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
mysql_replication: add a reference to how to encrypted connection options (#118)
* mysql_replication: add a reference to how to encrypted connection options * Fix sanity
This commit is contained in:
parent
884310cf24
commit
bd86e249d0
1 changed files with 24 additions and 6 deletions
|
@ -85,28 +85,43 @@ options:
|
||||||
type: int
|
type: int
|
||||||
master_ssl:
|
master_ssl:
|
||||||
description:
|
description:
|
||||||
- Same as mysql variable.
|
- Same as the C(MASTER_SSL) mysql variable.
|
||||||
|
- When setting it to C(yes), the connection attempt only succeeds
|
||||||
|
if an encrypted connection can be established.
|
||||||
|
- For details, refer to
|
||||||
|
L(MySQL encrypted replication documentation,https://dev.mysql.com/doc/refman/8.0/en/replication-solutions-encrypted-connections.html).
|
||||||
type: bool
|
type: bool
|
||||||
default: false
|
default: false
|
||||||
master_ssl_ca:
|
master_ssl_ca:
|
||||||
description:
|
description:
|
||||||
- Same as mysql variable.
|
- Same as the C(MASTER_SSL_CA) mysql variable.
|
||||||
|
- For details, refer to
|
||||||
|
L(MySQL encrypted replication documentation,https://dev.mysql.com/doc/refman/8.0/en/replication-solutions-encrypted-connections.html).
|
||||||
type: str
|
type: str
|
||||||
master_ssl_capath:
|
master_ssl_capath:
|
||||||
description:
|
description:
|
||||||
- Same as mysql variable.
|
- Same as the C(MASTER_SSL_CAPATH) mysql variable.
|
||||||
|
- For details, refer to
|
||||||
|
L(MySQL encrypted replication documentation,https://dev.mysql.com/doc/refman/8.0/en/replication-solutions-encrypted-connections.html).
|
||||||
type: str
|
type: str
|
||||||
master_ssl_cert:
|
master_ssl_cert:
|
||||||
description:
|
description:
|
||||||
- Same as mysql variable.
|
- Same as the C(MASTER_SSL_CERT) mysql variable.
|
||||||
|
- For details, refer to
|
||||||
|
L(MySQL encrypted replication documentation,https://dev.mysql.com/doc/refman/8.0/en/replication-solutions-encrypted-connections.html).
|
||||||
type: str
|
type: str
|
||||||
master_ssl_key:
|
master_ssl_key:
|
||||||
description:
|
description:
|
||||||
- Same as mysql variable.
|
- Same as the C(MASTER_SSL_KEY) mysql variable.
|
||||||
|
- For details, refer to
|
||||||
|
L(MySQL encrypted replication documentation,https://dev.mysql.com/doc/refman/8.0/en/replication-solutions-encrypted-connections.html).
|
||||||
type: str
|
type: str
|
||||||
master_ssl_cipher:
|
master_ssl_cipher:
|
||||||
description:
|
description:
|
||||||
- Same as mysql variable.
|
- Same as the C(MASTER_SSL_CIPHER) mysql variable.
|
||||||
|
- Specifies a colon-separated list of one or more ciphers permitted by the replica for the replication connection.
|
||||||
|
- For details, refer to
|
||||||
|
L(MySQL encrypted replication documentation,https://dev.mysql.com/doc/refman/8.0/en/replication-solutions-encrypted-connections.html).
|
||||||
type: str
|
type: str
|
||||||
master_auto_position:
|
master_auto_position:
|
||||||
description:
|
description:
|
||||||
|
@ -167,6 +182,9 @@ seealso:
|
||||||
- name: MySQL replication reference
|
- name: MySQL replication reference
|
||||||
description: Complete reference of the MySQL replication documentation.
|
description: Complete reference of the MySQL replication documentation.
|
||||||
link: https://dev.mysql.com/doc/refman/8.0/en/replication.html
|
link: https://dev.mysql.com/doc/refman/8.0/en/replication.html
|
||||||
|
- name: MySQL encrypted replication reference.
|
||||||
|
description: Setting up MySQL replication to use encrypted connection.
|
||||||
|
link: https://dev.mysql.com/doc/refman/8.0/en/replication-solutions-encrypted-connections.html
|
||||||
- name: MariaDB replication reference
|
- name: MariaDB replication reference
|
||||||
description: Complete reference of the MariaDB replication documentation.
|
description: Complete reference of the MariaDB replication documentation.
|
||||||
link: https://mariadb.com/kb/en/library/setting-up-replication/
|
link: https://mariadb.com/kb/en/library/setting-up-replication/
|
||||||
|
|
Loading…
Add table
Reference in a new issue