Show / Hide Table of Contents

Class SecretBackendSignArgs

Inheritance
System.Object
InputArgs
ResourceArgs
SecretBackendSignArgs
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.Vault.PkiSecret
Assembly: Pulumi.Vault.dll
Syntax
public sealed class SecretBackendSignArgs : ResourceArgs

Constructors

View Source

SecretBackendSignArgs()

Declaration
public SecretBackendSignArgs()

Properties

View Source

AltNames

List of alternative names

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

AutoRenew

If set to true, certs will be renewed if the expiration is within min_seconds_remaining. Default false

Declaration
public Input<bool> AutoRenew { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Backend

The PKI secret backend the resource belongs to.

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

CommonName

CN of certificate to create

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

Csr

The CSR

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

ExcludeCnFromSans

Flag to exclude CN from SANs

Declaration
public Input<bool> ExcludeCnFromSans { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Format

The format of data

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

IpSans

List of alternative IPs

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

MinSecondsRemaining

Generate a new certificate when the expiration is within this number of seconds, default is 604800 (7 days)

Declaration
public Input<int> MinSecondsRemaining { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

Name

Name of the role to create the certificate against

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

OtherSans

List of other SANs

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

Ttl

Time to live

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

UriSans

List of alterative URIs

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