Show / Hide Table of Contents

Class SecretBackendConfigUrls

Allows setting the issuing certificate endpoints, CRL distribution points, and OCSP server endpoints that will be encoded into issued certificates.

Example Usage

using Pulumi;
using Vault = Pulumi.Vault;

class MyStack : Stack
{
public MyStack()
{
    var pki = new Vault.PkiSecret.SecretBackend("pki", new Vault.PkiSecret.SecretBackendArgs
    {
        DefaultLeaseTtlSeconds = 3600,
        MaxLeaseTtlSeconds = 86400,
        Path = "%s",
    });
    var configUrls = new Vault.PkiSecret.SecretBackendConfigUrls("configUrls", new Vault.PkiSecret.SecretBackendConfigUrlsArgs
    {
        Backend = pki.Path,
        IssuingCertificates = 
        {
            "http://127.0.0.1:8200/v1/pki/ca",
        },
    });
}

}
Inheritance
System.Object
Resource
CustomResource
SecretBackendConfigUrls
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 SecretBackendConfigUrls : CustomResource

Constructors

View Source

SecretBackendConfigUrls(String, SecretBackendConfigUrlsArgs, CustomResourceOptions)

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

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

The unique name of the resource

SecretBackendConfigUrlsArgs 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

Backend

The path the PKI secret backend is mounted at, with no leading or trailing /s.

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

CrlDistributionPoints

Specifies the URL values for the CRL Distribution Points field.

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

IssuingCertificates

Specifies the URL values for the Issuing Certificate field.

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

OcspServers

Specifies the URL values for the OCSP Servers field.

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

Methods

View Source

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

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

Declaration
public static SecretBackendConfigUrls Get(string name, Input<string> id, SecretBackendConfigUrlsState 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.

SecretBackendConfigUrlsState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

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