VaultCertificateArgs

data class VaultCertificateArgs(val certificateStore: Output<String>? = null, val certificateUrl: Output<String>? = null) : ConvertibleToJava<VaultCertificateArgs>

Describes a single certificate reference in a Key Vault, and where the certificate should reside on the VM.

Constructors

Link copied to clipboard
constructor(certificateStore: Output<String>? = null, certificateUrl: Output<String>? = null)

Properties

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

For Windows VMs, specifies the certificate store on the Virtual Machine to which the certificate should be added. The specified certificate store is implicitly in the LocalMachine account. For Linux VMs, the certificate file is placed under the /var/lib/waagent directory, with the file name .crt for the X509 certificate file and .prv for private key. Both of these files are .pem formatted.

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

This is the URL of a certificate that has been uploaded to Key Vault as a secret. For adding a secret to the Key Vault, see [Add a key or secret to the

Functions

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