Class CertRequestArgs
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.Tls
Assembly: Pulumi.Tls.dll
Syntax
public sealed class CertRequestArgs : ResourceArgs
Constructors
View SourceCertRequestArgs()
Declaration
public CertRequestArgs()
Properties
View SourceDnsNames
List of DNS names for which a certificate is being requested.
Declaration
public InputList<string> DnsNames { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
IpAddresses
List of IP addresses for which a certificate is being requested.
Declaration
public InputList<string> IpAddresses { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
KeyAlgorithm
The name of the algorithm for the key provided
in private_key_pem.
Declaration
public Input<string> KeyAlgorithm { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PrivateKeyPem
PEM-encoded private key that the certificate will belong to
Declaration
public Input<string> PrivateKeyPem { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Subjects
The subject for which a certificate is being requested. This is a nested configuration block whose structure is described below.
Declaration
public InputList<CertRequestSubjectArgs> Subjects { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<CertRequestSubjectArgs> |
Uris
List of URIs for which a certificate is being requested.
Declaration
public InputList<string> Uris { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |