Cluster Client Authentication Args
data class ClusterClientAuthenticationArgs(val sasl: Output<ClusterSaslArgs>? = null, val tls: Output<ClusterTlsArgs>? = null, val unauthenticated: Output<ClusterUnauthenticatedArgs>? = null) : ConvertibleToJava<ClusterClientAuthenticationArgs>
Constructors
Link copied to clipboard
constructor(sasl: Output<ClusterSaslArgs>? = null, tls: Output<ClusterTlsArgs>? = null, unauthenticated: Output<ClusterUnauthenticatedArgs>? = null)
Properties
Link copied to clipboard
Details for client authentication using SASL. To turn on SASL, you must also turn on EncryptionInTransit by setting inCluster to true. You must set clientBroker to either TLS or TLS_PLAINTEXT . If you choose TLS_PLAINTEXT , then you must also set unauthenticated to true.
Link copied to clipboard
Details for ClientAuthentication using TLS. To turn on TLS access control, you must also turn on EncryptionInTransit by setting inCluster to true and clientBroker to TLS .
Link copied to clipboard
Details for ClientAuthentication using no authentication.