Show / Hide Table of Contents

Class CertificateArgs

Inheritance
System.Object
InputArgs
ResourceArgs
CertificateArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.DigitalOcean
Assembly: Pulumi.DigitalOcean.dll
Syntax
public sealed class CertificateArgs : ResourceArgs

Constructors

View Source

CertificateArgs()

Declaration
public CertificateArgs()

Properties

View Source

CertificateChain

The full PEM-formatted trust chain between the certificate authority's certificate and your domain's TLS certificate. Only valid when type is custom.

Declaration
public Input<string> CertificateChain { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Domains

List of fully qualified domain names (FQDNs) for which the certificate will be issued. The domains must be managed using DigitalOcean's DNS. Only valid when type is lets_encrypt.

Declaration
public InputList<string> Domains { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

LeafCertificate

The contents of a PEM-formatted public TLS certificate. Only valid when type is custom.

Declaration
public Input<string> LeafCertificate { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The name of the certificate for identification.

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PrivateKey

The contents of a PEM-formatted private-key corresponding to the SSL certificate. Only valid when type is custom.

Declaration
public Input<string> PrivateKey { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Type

The type of certificate to provision. Can be either custom or lets_encrypt. Defaults to custom.

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.