Mysql Ssl Config Args
data class MysqlSslConfigArgs(val caCertificate: Output<String>? = null, val clientCertificate: Output<String>? = null, val clientKey: Output<String>? = null) : ConvertibleToJava<MysqlSslConfigArgs>
MySQL SSL configuration information.
Properties
Link copied to clipboard
Input only. PEM-encoded certificate of the CA that signed the source database server's certificate.
Link copied to clipboard
Input only. PEM-encoded certificate that will be used by the replica to authenticate against the source database server. If this field is used then the 'client_key' and the 'ca_certificate' fields are mandatory.