SecretBackendConnectionRedis

data class SecretBackendConnectionRedis(val caCert: String? = null, val host: String, val insecureTls: Boolean? = null, val password: String, val port: Int? = null, val tls: Boolean? = null, val username: String)

Constructors

Link copied to clipboard
constructor(caCert: String? = null, host: String, insecureTls: Boolean? = null, password: String, port: Int? = null, tls: Boolean? = null, username: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val caCert: String? = null

The contents of a PEM-encoded CA cert file to use to verify the Redis server's identity.

Link copied to clipboard

Specifies the host to connect to

Link copied to clipboard
val insecureTls: Boolean? = null

Specifies whether to skip verification of the server certificate when using TLS.

Link copied to clipboard

Specifies the password corresponding to the given username.

Link copied to clipboard
val port: Int? = null

The transport port to use to connect to Redis.

Link copied to clipboard
val tls: Boolean? = null

Specifies whether to use TLS when connecting to Redis.

Link copied to clipboard

Specifies the username for Vault to use.