Connection Profile Mysql Ssl Args
data class ConnectionProfileMysqlSslArgs(val caCertificate: Output<String>, val clientCertificate: Output<String>? = null, val clientKey: Output<String>? = null, val type: Output<String>? = null) : ConvertibleToJava<ConnectionProfileMysqlSslArgs>
Properties
Link copied to clipboard
Required. Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate. The replica will use this certificate to verify it's connecting to the right host. Note: This property is sensitive and will not be displayed in the plan.
Link copied to clipboard
Input only. The x509 PEM-encoded certificate that will be used by the replica to authenticate against the source database server. If this field is used then the 'clientKey' field is mandatory Note: This property is sensitive and will not be displayed in the plan.
Link copied to clipboard