1. Packages
  2. HashiCorp Vault Provider
  3. API Docs
  4. kmip
  5. SecretBackend
HashiCorp Vault v7.3.0 published on Tuesday, Sep 9, 2025 by Pulumi

vault.kmip.SecretBackend

Explore with Pulumi AI

vault logo
HashiCorp Vault v7.3.0 published on Tuesday, Sep 9, 2025 by Pulumi

    Manages KMIP Secret backends in a Vault server. This feature requires Vault Enterprise. See the Vault documentation for more information.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as vault from "@pulumi/vault";
    
    const _default = new vault.kmip.SecretBackend("default", {
        path: "kmip",
        description: "Vault KMIP backend",
        listenAddrs: [
            "127.0.0.1:5696",
            "127.0.0.1:8080",
        ],
        tlsCaKeyType: "rsa",
        tlsCaKeyBits: 4096,
        defaultTlsClientKeyType: "rsa",
        defaultTlsClientKeyBits: 4096,
        defaultTlsClientTtl: 86400,
    });
    
    import pulumi
    import pulumi_vault as vault
    
    default = vault.kmip.SecretBackend("default",
        path="kmip",
        description="Vault KMIP backend",
        listen_addrs=[
            "127.0.0.1:5696",
            "127.0.0.1:8080",
        ],
        tls_ca_key_type="rsa",
        tls_ca_key_bits=4096,
        default_tls_client_key_type="rsa",
        default_tls_client_key_bits=4096,
        default_tls_client_ttl=86400)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-vault/sdk/v7/go/vault/kmip"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := kmip.NewSecretBackend(ctx, "default", &kmip.SecretBackendArgs{
    			Path:        pulumi.String("kmip"),
    			Description: pulumi.String("Vault KMIP backend"),
    			ListenAddrs: pulumi.StringArray{
    				pulumi.String("127.0.0.1:5696"),
    				pulumi.String("127.0.0.1:8080"),
    			},
    			TlsCaKeyType:            pulumi.String("rsa"),
    			TlsCaKeyBits:            pulumi.Int(4096),
    			DefaultTlsClientKeyType: pulumi.String("rsa"),
    			DefaultTlsClientKeyBits: pulumi.Int(4096),
    			DefaultTlsClientTtl:     pulumi.Int(86400),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Vault = Pulumi.Vault;
    
    return await Deployment.RunAsync(() => 
    {
        var @default = new Vault.Kmip.SecretBackend("default", new()
        {
            Path = "kmip",
            Description = "Vault KMIP backend",
            ListenAddrs = new[]
            {
                "127.0.0.1:5696",
                "127.0.0.1:8080",
            },
            TlsCaKeyType = "rsa",
            TlsCaKeyBits = 4096,
            DefaultTlsClientKeyType = "rsa",
            DefaultTlsClientKeyBits = 4096,
            DefaultTlsClientTtl = 86400,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vault.kmip.SecretBackend;
    import com.pulumi.vault.kmip.SecretBackendArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var default_ = new SecretBackend("default", SecretBackendArgs.builder()
                .path("kmip")
                .description("Vault KMIP backend")
                .listenAddrs(            
                    "127.0.0.1:5696",
                    "127.0.0.1:8080")
                .tlsCaKeyType("rsa")
                .tlsCaKeyBits(4096)
                .defaultTlsClientKeyType("rsa")
                .defaultTlsClientKeyBits(4096)
                .defaultTlsClientTtl(86400)
                .build());
    
        }
    }
    
    resources:
      default:
        type: vault:kmip:SecretBackend
        properties:
          path: kmip
          description: Vault KMIP backend
          listenAddrs:
            - 127.0.0.1:5696
            - 127.0.0.1:8080
          tlsCaKeyType: rsa
          tlsCaKeyBits: 4096
          defaultTlsClientKeyType: rsa
          defaultTlsClientKeyBits: 4096
          defaultTlsClientTtl: 86400
    

    Create SecretBackend Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SecretBackend(name: string, args: SecretBackendArgs, opts?: CustomResourceOptions);
    @overload
    def SecretBackend(resource_name: str,
                      args: SecretBackendArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def SecretBackend(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      path: Optional[str] = None,
                      default_tls_client_ttl: Optional[int] = None,
                      server_hostnames: Optional[Sequence[str]] = None,
                      audit_non_hmac_response_keys: Optional[Sequence[str]] = None,
                      default_lease_ttl_seconds: Optional[int] = None,
                      listing_visibility: Optional[str] = None,
                      default_tls_client_key_type: Optional[str] = None,
                      allowed_managed_keys: Optional[Sequence[str]] = None,
                      delegated_auth_accessors: Optional[Sequence[str]] = None,
                      description: Optional[str] = None,
                      disable_remount: Optional[bool] = None,
                      external_entropy_access: Optional[bool] = None,
                      force_no_cache: Optional[bool] = None,
                      audit_non_hmac_request_keys: Optional[Sequence[str]] = None,
                      identity_token_key: Optional[str] = None,
                      default_tls_client_key_bits: Optional[int] = None,
                      local: Optional[bool] = None,
                      max_lease_ttl_seconds: Optional[int] = None,
                      namespace: Optional[str] = None,
                      options: Optional[Mapping[str, str]] = None,
                      passthrough_request_headers: Optional[Sequence[str]] = None,
                      allowed_response_headers: Optional[Sequence[str]] = None,
                      plugin_version: Optional[str] = None,
                      seal_wrap: Optional[bool] = None,
                      listen_addrs: Optional[Sequence[str]] = None,
                      server_ips: Optional[Sequence[str]] = None,
                      tls_ca_key_bits: Optional[int] = None,
                      tls_ca_key_type: Optional[str] = None,
                      tls_min_version: Optional[str] = None)
    func NewSecretBackend(ctx *Context, name string, args SecretBackendArgs, opts ...ResourceOption) (*SecretBackend, error)
    public SecretBackend(string name, SecretBackendArgs args, CustomResourceOptions? opts = null)
    public SecretBackend(String name, SecretBackendArgs args)
    public SecretBackend(String name, SecretBackendArgs args, CustomResourceOptions options)
    
    type: vault:kmip:SecretBackend
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SecretBackendArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SecretBackendArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SecretBackendArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SecretBackendArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SecretBackendArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var examplesecretBackendResourceResourceFromKmipsecretBackend = new Vault.Kmip.SecretBackend("examplesecretBackendResourceResourceFromKmipsecretBackend", new()
    {
        Path = "string",
        DefaultTlsClientTtl = 0,
        ServerHostnames = new[]
        {
            "string",
        },
        AuditNonHmacResponseKeys = new[]
        {
            "string",
        },
        DefaultLeaseTtlSeconds = 0,
        ListingVisibility = "string",
        DefaultTlsClientKeyType = "string",
        AllowedManagedKeys = new[]
        {
            "string",
        },
        DelegatedAuthAccessors = new[]
        {
            "string",
        },
        Description = "string",
        DisableRemount = false,
        ExternalEntropyAccess = false,
        ForceNoCache = false,
        AuditNonHmacRequestKeys = new[]
        {
            "string",
        },
        IdentityTokenKey = "string",
        DefaultTlsClientKeyBits = 0,
        Local = false,
        MaxLeaseTtlSeconds = 0,
        Namespace = "string",
        Options = 
        {
            { "string", "string" },
        },
        PassthroughRequestHeaders = new[]
        {
            "string",
        },
        AllowedResponseHeaders = new[]
        {
            "string",
        },
        PluginVersion = "string",
        SealWrap = false,
        ListenAddrs = new[]
        {
            "string",
        },
        ServerIps = new[]
        {
            "string",
        },
        TlsCaKeyBits = 0,
        TlsCaKeyType = "string",
        TlsMinVersion = "string",
    });
    
    example, err := kmip.NewSecretBackend(ctx, "examplesecretBackendResourceResourceFromKmipsecretBackend", &kmip.SecretBackendArgs{
    	Path:                pulumi.String("string"),
    	DefaultTlsClientTtl: pulumi.Int(0),
    	ServerHostnames: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AuditNonHmacResponseKeys: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DefaultLeaseTtlSeconds:  pulumi.Int(0),
    	ListingVisibility:       pulumi.String("string"),
    	DefaultTlsClientKeyType: pulumi.String("string"),
    	AllowedManagedKeys: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DelegatedAuthAccessors: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Description:           pulumi.String("string"),
    	DisableRemount:        pulumi.Bool(false),
    	ExternalEntropyAccess: pulumi.Bool(false),
    	ForceNoCache:          pulumi.Bool(false),
    	AuditNonHmacRequestKeys: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	IdentityTokenKey:        pulumi.String("string"),
    	DefaultTlsClientKeyBits: pulumi.Int(0),
    	Local:                   pulumi.Bool(false),
    	MaxLeaseTtlSeconds:      pulumi.Int(0),
    	Namespace:               pulumi.String("string"),
    	Options: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	PassthroughRequestHeaders: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AllowedResponseHeaders: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	PluginVersion: pulumi.String("string"),
    	SealWrap:      pulumi.Bool(false),
    	ListenAddrs: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ServerIps: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	TlsCaKeyBits:  pulumi.Int(0),
    	TlsCaKeyType:  pulumi.String("string"),
    	TlsMinVersion: pulumi.String("string"),
    })
    
    var examplesecretBackendResourceResourceFromKmipsecretBackend = new com.pulumi.vault.kmip.SecretBackend("examplesecretBackendResourceResourceFromKmipsecretBackend", com.pulumi.vault.kmip.SecretBackendArgs.builder()
        .path("string")
        .defaultTlsClientTtl(0)
        .serverHostnames("string")
        .auditNonHmacResponseKeys("string")
        .defaultLeaseTtlSeconds(0)
        .listingVisibility("string")
        .defaultTlsClientKeyType("string")
        .allowedManagedKeys("string")
        .delegatedAuthAccessors("string")
        .description("string")
        .disableRemount(false)
        .externalEntropyAccess(false)
        .forceNoCache(false)
        .auditNonHmacRequestKeys("string")
        .identityTokenKey("string")
        .defaultTlsClientKeyBits(0)
        .local(false)
        .maxLeaseTtlSeconds(0)
        .namespace("string")
        .options(Map.of("string", "string"))
        .passthroughRequestHeaders("string")
        .allowedResponseHeaders("string")
        .pluginVersion("string")
        .sealWrap(false)
        .listenAddrs("string")
        .serverIps("string")
        .tlsCaKeyBits(0)
        .tlsCaKeyType("string")
        .tlsMinVersion("string")
        .build());
    
    examplesecret_backend_resource_resource_from_kmipsecret_backend = vault.kmip.SecretBackend("examplesecretBackendResourceResourceFromKmipsecretBackend",
        path="string",
        default_tls_client_ttl=0,
        server_hostnames=["string"],
        audit_non_hmac_response_keys=["string"],
        default_lease_ttl_seconds=0,
        listing_visibility="string",
        default_tls_client_key_type="string",
        allowed_managed_keys=["string"],
        delegated_auth_accessors=["string"],
        description="string",
        disable_remount=False,
        external_entropy_access=False,
        force_no_cache=False,
        audit_non_hmac_request_keys=["string"],
        identity_token_key="string",
        default_tls_client_key_bits=0,
        local=False,
        max_lease_ttl_seconds=0,
        namespace="string",
        options={
            "string": "string",
        },
        passthrough_request_headers=["string"],
        allowed_response_headers=["string"],
        plugin_version="string",
        seal_wrap=False,
        listen_addrs=["string"],
        server_ips=["string"],
        tls_ca_key_bits=0,
        tls_ca_key_type="string",
        tls_min_version="string")
    
    const examplesecretBackendResourceResourceFromKmipsecretBackend = new vault.kmip.SecretBackend("examplesecretBackendResourceResourceFromKmipsecretBackend", {
        path: "string",
        defaultTlsClientTtl: 0,
        serverHostnames: ["string"],
        auditNonHmacResponseKeys: ["string"],
        defaultLeaseTtlSeconds: 0,
        listingVisibility: "string",
        defaultTlsClientKeyType: "string",
        allowedManagedKeys: ["string"],
        delegatedAuthAccessors: ["string"],
        description: "string",
        disableRemount: false,
        externalEntropyAccess: false,
        forceNoCache: false,
        auditNonHmacRequestKeys: ["string"],
        identityTokenKey: "string",
        defaultTlsClientKeyBits: 0,
        local: false,
        maxLeaseTtlSeconds: 0,
        namespace: "string",
        options: {
            string: "string",
        },
        passthroughRequestHeaders: ["string"],
        allowedResponseHeaders: ["string"],
        pluginVersion: "string",
        sealWrap: false,
        listenAddrs: ["string"],
        serverIps: ["string"],
        tlsCaKeyBits: 0,
        tlsCaKeyType: "string",
        tlsMinVersion: "string",
    });
    
    type: vault:kmip:SecretBackend
    properties:
        allowedManagedKeys:
            - string
        allowedResponseHeaders:
            - string
        auditNonHmacRequestKeys:
            - string
        auditNonHmacResponseKeys:
            - string
        defaultLeaseTtlSeconds: 0
        defaultTlsClientKeyBits: 0
        defaultTlsClientKeyType: string
        defaultTlsClientTtl: 0
        delegatedAuthAccessors:
            - string
        description: string
        disableRemount: false
        externalEntropyAccess: false
        forceNoCache: false
        identityTokenKey: string
        listenAddrs:
            - string
        listingVisibility: string
        local: false
        maxLeaseTtlSeconds: 0
        namespace: string
        options:
            string: string
        passthroughRequestHeaders:
            - string
        path: string
        pluginVersion: string
        sealWrap: false
        serverHostnames:
            - string
        serverIps:
            - string
        tlsCaKeyBits: 0
        tlsCaKeyType: string
        tlsMinVersion: string
    

    SecretBackend Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SecretBackend resource accepts the following input properties:

    Path string
    The unique path this backend should be mounted at. Must not begin or end with a /. Defaults to kmip.
    AllowedManagedKeys List<string>
    List of managed key registry entry names that the mount in question is allowed to access
    AllowedResponseHeaders List<string>
    List of headers to allow and pass from the request to the plugin
    AuditNonHmacRequestKeys List<string>
    Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
    AuditNonHmacResponseKeys List<string>
    Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
    DefaultLeaseTtlSeconds int
    Default lease duration for tokens and secrets in seconds
    DefaultTlsClientKeyBits int
    Client certificate key bits, valid values depend on key type.
    DefaultTlsClientKeyType string
    Client certificate key type, rsa or ec.
    DefaultTlsClientTtl int
    Client certificate TTL in seconds
    DelegatedAuthAccessors List<string>
    List of headers to allow and pass from the request to the plugin
    Description string
    Human-friendly description of the mount for the backend
    DisableRemount bool
    If set, opts out of mount migration on path updates. See here for more info on Mount Migration
    ExternalEntropyAccess bool
    Enable the secrets engine to access Vault's external entropy source
    ForceNoCache bool
    If set to true, disables caching.
    IdentityTokenKey string
    The key to use for signing plugin workload identity tokens
    ListenAddrs List<string>
    Addresses the KMIP server should listen on (host:port).
    ListingVisibility string
    Specifies whether to show this mount in the UI-specific listing endpoint
    Local bool
    Local mount flag that can be explicitly set to true to enforce local mount in HA environment
    MaxLeaseTtlSeconds int
    Maximum possible lease duration for tokens and secrets in seconds
    Namespace string
    The namespace to provision the resource in. The value should not contain leading or trailing forward slashes. The namespace is always relative to the provider's configured namespace. Available only for Vault Enterprise.
    Options Dictionary<string, string>
    Specifies mount type specific options that are passed to the backend
    PassthroughRequestHeaders List<string>
    List of headers to allow and pass from the request to the plugin
    PluginVersion string
    Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
    SealWrap bool
    Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
    ServerHostnames List<string>
    Hostnames to include in the server's TLS certificate as SAN DNS names. The first will be used as the common name (CN).
    ServerIps List<string>
    IPs to include in the server's TLS certificate as SAN IP addresses.
    TlsCaKeyBits int
    CA key bits, valid values depend on key type.
    TlsCaKeyType string
    CA key type, rsa or ec.
    TlsMinVersion string
    Minimum TLS version to accept.
    Path string
    The unique path this backend should be mounted at. Must not begin or end with a /. Defaults to kmip.
    AllowedManagedKeys []string
    List of managed key registry entry names that the mount in question is allowed to access
    AllowedResponseHeaders []string
    List of headers to allow and pass from the request to the plugin
    AuditNonHmacRequestKeys []string
    Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
    AuditNonHmacResponseKeys []string
    Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
    DefaultLeaseTtlSeconds int
    Default lease duration for tokens and secrets in seconds
    DefaultTlsClientKeyBits int
    Client certificate key bits, valid values depend on key type.
    DefaultTlsClientKeyType string
    Client certificate key type, rsa or ec.
    DefaultTlsClientTtl int
    Client certificate TTL in seconds
    DelegatedAuthAccessors []string
    List of headers to allow and pass from the request to the plugin
    Description string
    Human-friendly description of the mount for the backend
    DisableRemount bool
    If set, opts out of mount migration on path updates. See here for more info on Mount Migration
    ExternalEntropyAccess bool
    Enable the secrets engine to access Vault's external entropy source
    ForceNoCache bool
    If set to true, disables caching.
    IdentityTokenKey string
    The key to use for signing plugin workload identity tokens
    ListenAddrs []string
    Addresses the KMIP server should listen on (host:port).
    ListingVisibility string
    Specifies whether to show this mount in the UI-specific listing endpoint
    Local bool
    Local mount flag that can be explicitly set to true to enforce local mount in HA environment
    MaxLeaseTtlSeconds int
    Maximum possible lease duration for tokens and secrets in seconds
    Namespace string
    The namespace to provision the resource in. The value should not contain leading or trailing forward slashes. The namespace is always relative to the provider's configured namespace. Available only for Vault Enterprise.
    Options map[string]string
    Specifies mount type specific options that are passed to the backend
    PassthroughRequestHeaders []string
    List of headers to allow and pass from the request to the plugin
    PluginVersion string
    Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
    SealWrap bool
    Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
    ServerHostnames []string
    Hostnames to include in the server's TLS certificate as SAN DNS names. The first will be used as the common name (CN).
    ServerIps []string
    IPs to include in the server's TLS certificate as SAN IP addresses.
    TlsCaKeyBits int
    CA key bits, valid values depend on key type.
    TlsCaKeyType string
    CA key type, rsa or ec.
    TlsMinVersion string
    Minimum TLS version to accept.
    path String
    The unique path this backend should be mounted at. Must not begin or end with a /. Defaults to kmip.
    allowedManagedKeys List<String>
    List of managed key registry entry names that the mount in question is allowed to access
    allowedResponseHeaders List<String>
    List of headers to allow and pass from the request to the plugin
    auditNonHmacRequestKeys List<String>
    Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
    auditNonHmacResponseKeys List<String>
    Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
    defaultLeaseTtlSeconds Integer
    Default lease duration for tokens and secrets in seconds
    defaultTlsClientKeyBits Integer
    Client certificate key bits, valid values depend on key type.
    defaultTlsClientKeyType String
    Client certificate key type, rsa or ec.
    defaultTlsClientTtl Integer
    Client certificate TTL in seconds
    delegatedAuthAccessors List<String>
    List of headers to allow and pass from the request to the plugin
    description String
    Human-friendly description of the mount for the backend
    disableRemount Boolean
    If set, opts out of mount migration on path updates. See here for more info on Mount Migration
    externalEntropyAccess Boolean
    Enable the secrets engine to access Vault's external entropy source
    forceNoCache Boolean
    If set to true, disables caching.
    identityTokenKey String
    The key to use for signing plugin workload identity tokens
    listenAddrs List<String>
    Addresses the KMIP server should listen on (host:port).
    listingVisibility String
    Specifies whether to show this mount in the UI-specific listing endpoint
    local Boolean
    Local mount flag that can be explicitly set to true to enforce local mount in HA environment
    maxLeaseTtlSeconds Integer
    Maximum possible lease duration for tokens and secrets in seconds
    namespace String
    The namespace to provision the resource in. The value should not contain leading or trailing forward slashes. The namespace is always relative to the provider's configured namespace. Available only for Vault Enterprise.
    options Map<String,String>
    Specifies mount type specific options that are passed to the backend
    passthroughRequestHeaders List<String>
    List of headers to allow and pass from the request to the plugin
    pluginVersion String
    Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
    sealWrap Boolean
    Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
    serverHostnames List<String>
    Hostnames to include in the server's TLS certificate as SAN DNS names. The first will be used as the common name (CN).
    serverIps List<String>
    IPs to include in the server's TLS certificate as SAN IP addresses.
    tlsCaKeyBits Integer
    CA key bits, valid values depend on key type.
    tlsCaKeyType String
    CA key type, rsa or ec.
    tlsMinVersion String
    Minimum TLS version to accept.
    path string
    The unique path this backend should be mounted at. Must not begin or end with a /. Defaults to kmip.
    allowedManagedKeys string[]
    List of managed key registry entry names that the mount in question is allowed to access
    allowedResponseHeaders string[]
    List of headers to allow and pass from the request to the plugin
    auditNonHmacRequestKeys string[]
    Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
    auditNonHmacResponseKeys string[]
    Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
    defaultLeaseTtlSeconds number
    Default lease duration for tokens and secrets in seconds
    defaultTlsClientKeyBits number
    Client certificate key bits, valid values depend on key type.
    defaultTlsClientKeyType string
    Client certificate key type, rsa or ec.
    defaultTlsClientTtl number
    Client certificate TTL in seconds
    delegatedAuthAccessors string[]
    List of headers to allow and pass from the request to the plugin
    description string
    Human-friendly description of the mount for the backend
    disableRemount boolean
    If set, opts out of mount migration on path updates. See here for more info on Mount Migration
    externalEntropyAccess boolean
    Enable the secrets engine to access Vault's external entropy source
    forceNoCache boolean
    If set to true, disables caching.
    identityTokenKey string
    The key to use for signing plugin workload identity tokens
    listenAddrs string[]
    Addresses the KMIP server should listen on (host:port).
    listingVisibility string
    Specifies whether to show this mount in the UI-specific listing endpoint
    local boolean
    Local mount flag that can be explicitly set to true to enforce local mount in HA environment
    maxLeaseTtlSeconds number
    Maximum possible lease duration for tokens and secrets in seconds
    namespace string
    The namespace to provision the resource in. The value should not contain leading or trailing forward slashes. The namespace is always relative to the provider's configured namespace. Available only for Vault Enterprise.
    options {[key: string]: string}
    Specifies mount type specific options that are passed to the backend
    passthroughRequestHeaders string[]
    List of headers to allow and pass from the request to the plugin
    pluginVersion string
    Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
    sealWrap boolean
    Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
    serverHostnames string[]
    Hostnames to include in the server's TLS certificate as SAN DNS names. The first will be used as the common name (CN).
    serverIps string[]
    IPs to include in the server's TLS certificate as SAN IP addresses.
    tlsCaKeyBits number
    CA key bits, valid values depend on key type.
    tlsCaKeyType string
    CA key type, rsa or ec.
    tlsMinVersion string
    Minimum TLS version to accept.
    path str
    The unique path this backend should be mounted at. Must not begin or end with a /. Defaults to kmip.
    allowed_managed_keys Sequence[str]
    List of managed key registry entry names that the mount in question is allowed to access
    allowed_response_headers Sequence[str]
    List of headers to allow and pass from the request to the plugin
    audit_non_hmac_request_keys Sequence[str]
    Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
    audit_non_hmac_response_keys Sequence[str]
    Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
    default_lease_ttl_seconds int
    Default lease duration for tokens and secrets in seconds
    default_tls_client_key_bits int
    Client certificate key bits, valid values depend on key type.
    default_tls_client_key_type str
    Client certificate key type, rsa or ec.
    default_tls_client_ttl int
    Client certificate TTL in seconds
    delegated_auth_accessors Sequence[str]
    List of headers to allow and pass from the request to the plugin
    description str
    Human-friendly description of the mount for the backend
    disable_remount bool
    If set, opts out of mount migration on path updates. See here for more info on Mount Migration
    external_entropy_access bool
    Enable the secrets engine to access Vault's external entropy source
    force_no_cache bool
    If set to true, disables caching.
    identity_token_key str
    The key to use for signing plugin workload identity tokens
    listen_addrs Sequence[str]
    Addresses the KMIP server should listen on (host:port).
    listing_visibility str
    Specifies whether to show this mount in the UI-specific listing endpoint
    local bool
    Local mount flag that can be explicitly set to true to enforce local mount in HA environment
    max_lease_ttl_seconds int
    Maximum possible lease duration for tokens and secrets in seconds
    namespace str
    The namespace to provision the resource in. The value should not contain leading or trailing forward slashes. The namespace is always relative to the provider's configured namespace. Available only for Vault Enterprise.
    options Mapping[str, str]
    Specifies mount type specific options that are passed to the backend
    passthrough_request_headers Sequence[str]
    List of headers to allow and pass from the request to the plugin
    plugin_version str
    Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
    seal_wrap bool
    Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
    server_hostnames Sequence[str]
    Hostnames to include in the server's TLS certificate as SAN DNS names. The first will be used as the common name (CN).
    server_ips Sequence[str]
    IPs to include in the server's TLS certificate as SAN IP addresses.
    tls_ca_key_bits int
    CA key bits, valid values depend on key type.
    tls_ca_key_type str
    CA key type, rsa or ec.
    tls_min_version str
    Minimum TLS version to accept.
    path String
    The unique path this backend should be mounted at. Must not begin or end with a /. Defaults to kmip.
    allowedManagedKeys List<String>
    List of managed key registry entry names that the mount in question is allowed to access
    allowedResponseHeaders List<String>
    List of headers to allow and pass from the request to the plugin
    auditNonHmacRequestKeys List<String>
    Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
    auditNonHmacResponseKeys List<String>
    Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
    defaultLeaseTtlSeconds Number
    Default lease duration for tokens and secrets in seconds
    defaultTlsClientKeyBits Number
    Client certificate key bits, valid values depend on key type.
    defaultTlsClientKeyType String
    Client certificate key type, rsa or ec.
    defaultTlsClientTtl Number
    Client certificate TTL in seconds
    delegatedAuthAccessors List<String>
    List of headers to allow and pass from the request to the plugin
    description String
    Human-friendly description of the mount for the backend
    disableRemount Boolean
    If set, opts out of mount migration on path updates. See here for more info on Mount Migration
    externalEntropyAccess Boolean
    Enable the secrets engine to access Vault's external entropy source
    forceNoCache Boolean
    If set to true, disables caching.
    identityTokenKey String
    The key to use for signing plugin workload identity tokens
    listenAddrs List<String>
    Addresses the KMIP server should listen on (host:port).
    listingVisibility String
    Specifies whether to show this mount in the UI-specific listing endpoint
    local Boolean
    Local mount flag that can be explicitly set to true to enforce local mount in HA environment
    maxLeaseTtlSeconds Number
    Maximum possible lease duration for tokens and secrets in seconds
    namespace String
    The namespace to provision the resource in. The value should not contain leading or trailing forward slashes. The namespace is always relative to the provider's configured namespace. Available only for Vault Enterprise.
    options Map<String>
    Specifies mount type specific options that are passed to the backend
    passthroughRequestHeaders List<String>
    List of headers to allow and pass from the request to the plugin
    pluginVersion String
    Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
    sealWrap Boolean
    Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
    serverHostnames List<String>
    Hostnames to include in the server's TLS certificate as SAN DNS names. The first will be used as the common name (CN).
    serverIps List<String>
    IPs to include in the server's TLS certificate as SAN IP addresses.
    tlsCaKeyBits Number
    CA key bits, valid values depend on key type.
    tlsCaKeyType String
    CA key type, rsa or ec.
    tlsMinVersion String
    Minimum TLS version to accept.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SecretBackend resource produces the following output properties:

    Accessor string
    Accessor of the mount
    Id string
    The provider-assigned unique ID for this managed resource.
    Accessor string
    Accessor of the mount
    Id string
    The provider-assigned unique ID for this managed resource.
    accessor String
    Accessor of the mount
    id String
    The provider-assigned unique ID for this managed resource.
    accessor string
    Accessor of the mount
    id string
    The provider-assigned unique ID for this managed resource.
    accessor str
    Accessor of the mount
    id str
    The provider-assigned unique ID for this managed resource.
    accessor String
    Accessor of the mount
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing SecretBackend Resource

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

    public static get(name: string, id: Input<ID>, state?: SecretBackendState, opts?: CustomResourceOptions): SecretBackend
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accessor: Optional[str] = None,
            allowed_managed_keys: Optional[Sequence[str]] = None,
            allowed_response_headers: Optional[Sequence[str]] = None,
            audit_non_hmac_request_keys: Optional[Sequence[str]] = None,
            audit_non_hmac_response_keys: Optional[Sequence[str]] = None,
            default_lease_ttl_seconds: Optional[int] = None,
            default_tls_client_key_bits: Optional[int] = None,
            default_tls_client_key_type: Optional[str] = None,
            default_tls_client_ttl: Optional[int] = None,
            delegated_auth_accessors: Optional[Sequence[str]] = None,
            description: Optional[str] = None,
            disable_remount: Optional[bool] = None,
            external_entropy_access: Optional[bool] = None,
            force_no_cache: Optional[bool] = None,
            identity_token_key: Optional[str] = None,
            listen_addrs: Optional[Sequence[str]] = None,
            listing_visibility: Optional[str] = None,
            local: Optional[bool] = None,
            max_lease_ttl_seconds: Optional[int] = None,
            namespace: Optional[str] = None,
            options: Optional[Mapping[str, str]] = None,
            passthrough_request_headers: Optional[Sequence[str]] = None,
            path: Optional[str] = None,
            plugin_version: Optional[str] = None,
            seal_wrap: Optional[bool] = None,
            server_hostnames: Optional[Sequence[str]] = None,
            server_ips: Optional[Sequence[str]] = None,
            tls_ca_key_bits: Optional[int] = None,
            tls_ca_key_type: Optional[str] = None,
            tls_min_version: Optional[str] = None) -> SecretBackend
    func GetSecretBackend(ctx *Context, name string, id IDInput, state *SecretBackendState, opts ...ResourceOption) (*SecretBackend, error)
    public static SecretBackend Get(string name, Input<string> id, SecretBackendState? state, CustomResourceOptions? opts = null)
    public static SecretBackend get(String name, Output<String> id, SecretBackendState state, CustomResourceOptions options)
    resources:  _:    type: vault:kmip:SecretBackend    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Accessor string
    Accessor of the mount
    AllowedManagedKeys List<string>
    List of managed key registry entry names that the mount in question is allowed to access
    AllowedResponseHeaders List<string>
    List of headers to allow and pass from the request to the plugin
    AuditNonHmacRequestKeys List<string>
    Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
    AuditNonHmacResponseKeys List<string>
    Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
    DefaultLeaseTtlSeconds int
    Default lease duration for tokens and secrets in seconds
    DefaultTlsClientKeyBits int
    Client certificate key bits, valid values depend on key type.
    DefaultTlsClientKeyType string
    Client certificate key type, rsa or ec.
    DefaultTlsClientTtl int
    Client certificate TTL in seconds
    DelegatedAuthAccessors List<string>
    List of headers to allow and pass from the request to the plugin
    Description string
    Human-friendly description of the mount for the backend
    DisableRemount bool
    If set, opts out of mount migration on path updates. See here for more info on Mount Migration
    ExternalEntropyAccess bool
    Enable the secrets engine to access Vault's external entropy source
    ForceNoCache bool
    If set to true, disables caching.
    IdentityTokenKey string
    The key to use for signing plugin workload identity tokens
    ListenAddrs List<string>
    Addresses the KMIP server should listen on (host:port).
    ListingVisibility string
    Specifies whether to show this mount in the UI-specific listing endpoint
    Local bool
    Local mount flag that can be explicitly set to true to enforce local mount in HA environment
    MaxLeaseTtlSeconds int
    Maximum possible lease duration for tokens and secrets in seconds
    Namespace string
    The namespace to provision the resource in. The value should not contain leading or trailing forward slashes. The namespace is always relative to the provider's configured namespace. Available only for Vault Enterprise.
    Options Dictionary<string, string>
    Specifies mount type specific options that are passed to the backend
    PassthroughRequestHeaders List<string>
    List of headers to allow and pass from the request to the plugin
    Path string
    The unique path this backend should be mounted at. Must not begin or end with a /. Defaults to kmip.
    PluginVersion string
    Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
    SealWrap bool
    Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
    ServerHostnames List<string>
    Hostnames to include in the server's TLS certificate as SAN DNS names. The first will be used as the common name (CN).
    ServerIps List<string>
    IPs to include in the server's TLS certificate as SAN IP addresses.
    TlsCaKeyBits int
    CA key bits, valid values depend on key type.
    TlsCaKeyType string
    CA key type, rsa or ec.
    TlsMinVersion string
    Minimum TLS version to accept.
    Accessor string
    Accessor of the mount
    AllowedManagedKeys []string
    List of managed key registry entry names that the mount in question is allowed to access
    AllowedResponseHeaders []string
    List of headers to allow and pass from the request to the plugin
    AuditNonHmacRequestKeys []string
    Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
    AuditNonHmacResponseKeys []string
    Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
    DefaultLeaseTtlSeconds int
    Default lease duration for tokens and secrets in seconds
    DefaultTlsClientKeyBits int
    Client certificate key bits, valid values depend on key type.
    DefaultTlsClientKeyType string
    Client certificate key type, rsa or ec.
    DefaultTlsClientTtl int
    Client certificate TTL in seconds
    DelegatedAuthAccessors []string
    List of headers to allow and pass from the request to the plugin
    Description string
    Human-friendly description of the mount for the backend
    DisableRemount bool
    If set, opts out of mount migration on path updates. See here for more info on Mount Migration
    ExternalEntropyAccess bool
    Enable the secrets engine to access Vault's external entropy source
    ForceNoCache bool
    If set to true, disables caching.
    IdentityTokenKey string
    The key to use for signing plugin workload identity tokens
    ListenAddrs []string
    Addresses the KMIP server should listen on (host:port).
    ListingVisibility string
    Specifies whether to show this mount in the UI-specific listing endpoint
    Local bool
    Local mount flag that can be explicitly set to true to enforce local mount in HA environment
    MaxLeaseTtlSeconds int
    Maximum possible lease duration for tokens and secrets in seconds
    Namespace string
    The namespace to provision the resource in. The value should not contain leading or trailing forward slashes. The namespace is always relative to the provider's configured namespace. Available only for Vault Enterprise.
    Options map[string]string
    Specifies mount type specific options that are passed to the backend
    PassthroughRequestHeaders []string
    List of headers to allow and pass from the request to the plugin
    Path string
    The unique path this backend should be mounted at. Must not begin or end with a /. Defaults to kmip.
    PluginVersion string
    Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
    SealWrap bool
    Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
    ServerHostnames []string
    Hostnames to include in the server's TLS certificate as SAN DNS names. The first will be used as the common name (CN).
    ServerIps []string
    IPs to include in the server's TLS certificate as SAN IP addresses.
    TlsCaKeyBits int
    CA key bits, valid values depend on key type.
    TlsCaKeyType string
    CA key type, rsa or ec.
    TlsMinVersion string
    Minimum TLS version to accept.
    accessor String
    Accessor of the mount
    allowedManagedKeys List<String>
    List of managed key registry entry names that the mount in question is allowed to access
    allowedResponseHeaders List<String>
    List of headers to allow and pass from the request to the plugin
    auditNonHmacRequestKeys List<String>
    Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
    auditNonHmacResponseKeys List<String>
    Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
    defaultLeaseTtlSeconds Integer
    Default lease duration for tokens and secrets in seconds
    defaultTlsClientKeyBits Integer
    Client certificate key bits, valid values depend on key type.
    defaultTlsClientKeyType String
    Client certificate key type, rsa or ec.
    defaultTlsClientTtl Integer
    Client certificate TTL in seconds
    delegatedAuthAccessors List<String>
    List of headers to allow and pass from the request to the plugin
    description String
    Human-friendly description of the mount for the backend
    disableRemount Boolean
    If set, opts out of mount migration on path updates. See here for more info on Mount Migration
    externalEntropyAccess Boolean
    Enable the secrets engine to access Vault's external entropy source
    forceNoCache Boolean
    If set to true, disables caching.
    identityTokenKey String
    The key to use for signing plugin workload identity tokens
    listenAddrs List<String>
    Addresses the KMIP server should listen on (host:port).
    listingVisibility String
    Specifies whether to show this mount in the UI-specific listing endpoint
    local Boolean
    Local mount flag that can be explicitly set to true to enforce local mount in HA environment
    maxLeaseTtlSeconds Integer
    Maximum possible lease duration for tokens and secrets in seconds
    namespace String
    The namespace to provision the resource in. The value should not contain leading or trailing forward slashes. The namespace is always relative to the provider's configured namespace. Available only for Vault Enterprise.
    options Map<String,String>
    Specifies mount type specific options that are passed to the backend
    passthroughRequestHeaders List<String>
    List of headers to allow and pass from the request to the plugin
    path String
    The unique path this backend should be mounted at. Must not begin or end with a /. Defaults to kmip.
    pluginVersion String
    Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
    sealWrap Boolean
    Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
    serverHostnames List<String>
    Hostnames to include in the server's TLS certificate as SAN DNS names. The first will be used as the common name (CN).
    serverIps List<String>
    IPs to include in the server's TLS certificate as SAN IP addresses.
    tlsCaKeyBits Integer
    CA key bits, valid values depend on key type.
    tlsCaKeyType String
    CA key type, rsa or ec.
    tlsMinVersion String
    Minimum TLS version to accept.
    accessor string
    Accessor of the mount
    allowedManagedKeys string[]
    List of managed key registry entry names that the mount in question is allowed to access
    allowedResponseHeaders string[]
    List of headers to allow and pass from the request to the plugin
    auditNonHmacRequestKeys string[]
    Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
    auditNonHmacResponseKeys string[]
    Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
    defaultLeaseTtlSeconds number
    Default lease duration for tokens and secrets in seconds
    defaultTlsClientKeyBits number
    Client certificate key bits, valid values depend on key type.
    defaultTlsClientKeyType string
    Client certificate key type, rsa or ec.
    defaultTlsClientTtl number
    Client certificate TTL in seconds
    delegatedAuthAccessors string[]
    List of headers to allow and pass from the request to the plugin
    description string
    Human-friendly description of the mount for the backend
    disableRemount boolean
    If set, opts out of mount migration on path updates. See here for more info on Mount Migration
    externalEntropyAccess boolean
    Enable the secrets engine to access Vault's external entropy source
    forceNoCache boolean
    If set to true, disables caching.
    identityTokenKey string
    The key to use for signing plugin workload identity tokens
    listenAddrs string[]
    Addresses the KMIP server should listen on (host:port).
    listingVisibility string
    Specifies whether to show this mount in the UI-specific listing endpoint
    local boolean
    Local mount flag that can be explicitly set to true to enforce local mount in HA environment
    maxLeaseTtlSeconds number
    Maximum possible lease duration for tokens and secrets in seconds
    namespace string
    The namespace to provision the resource in. The value should not contain leading or trailing forward slashes. The namespace is always relative to the provider's configured namespace. Available only for Vault Enterprise.
    options {[key: string]: string}
    Specifies mount type specific options that are passed to the backend
    passthroughRequestHeaders string[]
    List of headers to allow and pass from the request to the plugin
    path string
    The unique path this backend should be mounted at. Must not begin or end with a /. Defaults to kmip.
    pluginVersion string
    Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
    sealWrap boolean
    Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
    serverHostnames string[]
    Hostnames to include in the server's TLS certificate as SAN DNS names. The first will be used as the common name (CN).
    serverIps string[]
    IPs to include in the server's TLS certificate as SAN IP addresses.
    tlsCaKeyBits number
    CA key bits, valid values depend on key type.
    tlsCaKeyType string
    CA key type, rsa or ec.
    tlsMinVersion string
    Minimum TLS version to accept.
    accessor str
    Accessor of the mount
    allowed_managed_keys Sequence[str]
    List of managed key registry entry names that the mount in question is allowed to access
    allowed_response_headers Sequence[str]
    List of headers to allow and pass from the request to the plugin
    audit_non_hmac_request_keys Sequence[str]
    Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
    audit_non_hmac_response_keys Sequence[str]
    Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
    default_lease_ttl_seconds int
    Default lease duration for tokens and secrets in seconds
    default_tls_client_key_bits int
    Client certificate key bits, valid values depend on key type.
    default_tls_client_key_type str
    Client certificate key type, rsa or ec.
    default_tls_client_ttl int
    Client certificate TTL in seconds
    delegated_auth_accessors Sequence[str]
    List of headers to allow and pass from the request to the plugin
    description str
    Human-friendly description of the mount for the backend
    disable_remount bool
    If set, opts out of mount migration on path updates. See here for more info on Mount Migration
    external_entropy_access bool
    Enable the secrets engine to access Vault's external entropy source
    force_no_cache bool
    If set to true, disables caching.
    identity_token_key str
    The key to use for signing plugin workload identity tokens
    listen_addrs Sequence[str]
    Addresses the KMIP server should listen on (host:port).
    listing_visibility str
    Specifies whether to show this mount in the UI-specific listing endpoint
    local bool
    Local mount flag that can be explicitly set to true to enforce local mount in HA environment
    max_lease_ttl_seconds int
    Maximum possible lease duration for tokens and secrets in seconds
    namespace str
    The namespace to provision the resource in. The value should not contain leading or trailing forward slashes. The namespace is always relative to the provider's configured namespace. Available only for Vault Enterprise.
    options Mapping[str, str]
    Specifies mount type specific options that are passed to the backend
    passthrough_request_headers Sequence[str]
    List of headers to allow and pass from the request to the plugin
    path str
    The unique path this backend should be mounted at. Must not begin or end with a /. Defaults to kmip.
    plugin_version str
    Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
    seal_wrap bool
    Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
    server_hostnames Sequence[str]
    Hostnames to include in the server's TLS certificate as SAN DNS names. The first will be used as the common name (CN).
    server_ips Sequence[str]
    IPs to include in the server's TLS certificate as SAN IP addresses.
    tls_ca_key_bits int
    CA key bits, valid values depend on key type.
    tls_ca_key_type str
    CA key type, rsa or ec.
    tls_min_version str
    Minimum TLS version to accept.
    accessor String
    Accessor of the mount
    allowedManagedKeys List<String>
    List of managed key registry entry names that the mount in question is allowed to access
    allowedResponseHeaders List<String>
    List of headers to allow and pass from the request to the plugin
    auditNonHmacRequestKeys List<String>
    Specifies the list of keys that will not be HMAC'd by audit devices in the request data object.
    auditNonHmacResponseKeys List<String>
    Specifies the list of keys that will not be HMAC'd by audit devices in the response data object.
    defaultLeaseTtlSeconds Number
    Default lease duration for tokens and secrets in seconds
    defaultTlsClientKeyBits Number
    Client certificate key bits, valid values depend on key type.
    defaultTlsClientKeyType String
    Client certificate key type, rsa or ec.
    defaultTlsClientTtl Number
    Client certificate TTL in seconds
    delegatedAuthAccessors List<String>
    List of headers to allow and pass from the request to the plugin
    description String
    Human-friendly description of the mount for the backend
    disableRemount Boolean
    If set, opts out of mount migration on path updates. See here for more info on Mount Migration
    externalEntropyAccess Boolean
    Enable the secrets engine to access Vault's external entropy source
    forceNoCache Boolean
    If set to true, disables caching.
    identityTokenKey String
    The key to use for signing plugin workload identity tokens
    listenAddrs List<String>
    Addresses the KMIP server should listen on (host:port).
    listingVisibility String
    Specifies whether to show this mount in the UI-specific listing endpoint
    local Boolean
    Local mount flag that can be explicitly set to true to enforce local mount in HA environment
    maxLeaseTtlSeconds Number
    Maximum possible lease duration for tokens and secrets in seconds
    namespace String
    The namespace to provision the resource in. The value should not contain leading or trailing forward slashes. The namespace is always relative to the provider's configured namespace. Available only for Vault Enterprise.
    options Map<String>
    Specifies mount type specific options that are passed to the backend
    passthroughRequestHeaders List<String>
    List of headers to allow and pass from the request to the plugin
    path String
    The unique path this backend should be mounted at. Must not begin or end with a /. Defaults to kmip.
    pluginVersion String
    Specifies the semantic version of the plugin to use, e.g. 'v1.0.0'
    sealWrap Boolean
    Enable seal wrapping for the mount, causing values stored by the mount to be wrapped by the seal's encryption capability
    serverHostnames List<String>
    Hostnames to include in the server's TLS certificate as SAN DNS names. The first will be used as the common name (CN).
    serverIps List<String>
    IPs to include in the server's TLS certificate as SAN IP addresses.
    tlsCaKeyBits Number
    CA key bits, valid values depend on key type.
    tlsCaKeyType String
    CA key type, rsa or ec.
    tlsMinVersion String
    Minimum TLS version to accept.

    Import

    KMIP Secret backend can be imported using the path, e.g.

    $ pulumi import vault:kmip/secretBackend:SecretBackend default kmip
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Vault pulumi/pulumi-vault
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the vault Terraform Provider.
    vault logo
    HashiCorp Vault v7.3.0 published on Tuesday, Sep 9, 2025 by Pulumi