Show / Hide Table of Contents

Class SecretBackendSign

Inheritance
System.Object
Resource
CustomResource
SecretBackendSign
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
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 class SecretBackendSign : CustomResource

Constructors

View Source

SecretBackendSign(String, SecretBackendSignArgs, CustomResourceOptions)

Create a SecretBackendSign resource with the given unique name, arguments, and options.

Declaration
public SecretBackendSign(string name, SecretBackendSignArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

SecretBackendSignArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

AltNames

List of alternative names

Declaration
public Output<ImmutableArray<string>> AltNames { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<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 Output<bool?> AutoRenew { get; }
Property Value
Type Description
Output<System.Nullable<System.Boolean>>
View Source

Backend

The PKI secret backend the resource belongs to.

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

CaChains

The CA chain

Declaration
public Output<ImmutableArray<string>> CaChains { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<System.String>>
View Source

Certificate

The certificate

Declaration
public Output<string> Certificate { get; }
Property Value
Type Description
Output<System.String>
View Source

CommonName

CN of certificate to create

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

Csr

The CSR

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

ExcludeCnFromSans

Flag to exclude CN from SANs

Declaration
public Output<bool?> ExcludeCnFromSans { get; }
Property Value
Type Description
Output<System.Nullable<System.Boolean>>
View Source

Expiration

The expiration date of the certificate in unix epoch format

Declaration
public Output<int> Expiration { get; }
Property Value
Type Description
Output<System.Int32>
View Source

Format

The format of data

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

IpSans

List of alternative IPs

Declaration
public Output<ImmutableArray<string>> IpSans { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<System.String>>
View Source

IssuingCa

The issuing CA

Declaration
public Output<string> IssuingCa { get; }
Property Value
Type Description
Output<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 Output<int?> MinSecondsRemaining { get; }
Property Value
Type Description
Output<System.Nullable<System.Int32>>
View Source

Name

Name of the role to create the certificate against

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

OtherSans

List of other SANs

Declaration
public Output<ImmutableArray<string>> OtherSans { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<System.String>>
View Source

Serial

The serial

Declaration
public Output<string> Serial { get; }
Property Value
Type Description
Output<System.String>
View Source

Ttl

Time to live

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

UriSans

List of alterative URIs

Declaration
public Output<ImmutableArray<string>> UriSans { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableArray<System.String>>

Methods

View Source

Get(String, Input<String>, SecretBackendSignState, CustomResourceOptions)

Get an existing SecretBackendSign resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static SecretBackendSign Get(string name, Input<string> id, SecretBackendSignState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

SecretBackendSignState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
SecretBackendSign
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.