AuthConfigClientCertificateArgs

data class AuthConfigClientCertificateArgs(val encryptedPrivateKey: Output<String>, val passphrase: Output<String>? = null, val sslCertificate: Output<String>) : ConvertibleToJava<AuthConfigClientCertificateArgs>

Constructors

Link copied to clipboard
constructor(encryptedPrivateKey: Output<String>, passphrase: Output<String>? = null, sslCertificate: Output<String>)

Properties

Link copied to clipboard

The ssl certificate encoded in PEM format. This string must include the begin header and end footer lines.

Link copied to clipboard
val passphrase: Output<String>? = null

'passphrase' should be left unset if private key is not encrypted. Note that 'passphrase' is not the password for web server, but an extra layer of security to protected private key.

Link copied to clipboard
val sslCertificate: Output<String>

The ssl certificate encoded in PEM format. This string must include the begin header and end footer lines.

Functions

Link copied to clipboard
open override fun toJava(): AuthConfigClientCertificateArgs