SelfManagedCertificateArgs

data class SelfManagedCertificateArgs(val pemCertificate: Output<String>? = null, val pemPrivateKey: Output<String>? = null) : ConvertibleToJava<SelfManagedCertificateArgs>

Certificate data for a SelfManaged Certificate. SelfManaged Certificates are uploaded by the user. Updating such certificates before they expire remains the user's responsibility.

Constructors

Link copied to clipboard
fun SelfManagedCertificateArgs(pemCertificate: Output<String>? = null, pemPrivateKey: Output<String>? = null)

Functions

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

Properties

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

Input only. The PEM-encoded certificate chain. Leaf certificate comes first, followed by intermediate ones if any.

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

Input only. The PEM-encoded private key of the leaf certificate.