Show / Hide Table of Contents

Namespace Pulumi.Vault.Transit

Classes

SecretBackendKey

Creates an Encryption Keyring on a Transit Secret Backend for Vault.

Example Usage

using Pulumi;
using Vault = Pulumi.Vault;

class MyStack : Stack
{
public MyStack()
{
    var transit = new Vault.Mount("transit", new Vault.MountArgs
    {
        DefaultLeaseTtlSeconds = 3600,
        Description = "Example description",
        MaxLeaseTtlSeconds = 86400,
        Path = "transit",
        Type = "transit",
    });
    var key = new Vault.Transit.SecretBackendKey("key", new Vault.Transit.SecretBackendKeyArgs
    {
        Backend = transit.Path,
    });
}

}

SecretBackendKeyArgs

SecretBackendKeyState

SecretCacheConfig

Configure the cache for the Transit Secret Backend in Vault.

SecretCacheConfigArgs

SecretCacheConfigState

Back to top Copyright 2016-2020, Pulumi Corporation.