Class CertificateState
Inherited Members
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 CertificateState : ResourceArgs
Constructors
View SourceCertificateState()
Declaration
public CertificateState()
Properties
View SourceCertificateChain
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> |
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> |
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> |
Name
The name of the certificate for identification.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
NotAfter
The expiration date of the certificate
Declaration
public Input<string> NotAfter { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |
Sha1Fingerprint
The SHA-1 fingerprint of the certificate
Declaration
public Input<string> Sha1Fingerprint { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
State
Declaration
public Input<string> State { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |