1. Packages
  2. HashiCorp Vault Provider
  3. API Docs
  4. pkiSecret
  5. SecretBackendCrlConfig
HashiCorp Vault v6.6.0 published on Thursday, Mar 13, 2025 by Pulumi

vault.pkiSecret.SecretBackendCrlConfig

Explore with Pulumi AI

Allows setting the duration for which the generated CRL should be marked valid. If the CRL is disabled, it will return a signed but zero-length CRL for any request. If enabled, it will re-build the CRL.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";

const pki = new vault.Mount("pki", {
    path: "%s",
    type: "pki",
    defaultLeaseTtlSeconds: 3600,
    maxLeaseTtlSeconds: 86400,
});
const crlConfig = new vault.pkisecret.SecretBackendCrlConfig("crl_config", {
    backend: pki.path,
    expiry: "72h",
    disable: false,
});
Copy
import pulumi
import pulumi_vault as vault

pki = vault.Mount("pki",
    path="%s",
    type="pki",
    default_lease_ttl_seconds=3600,
    max_lease_ttl_seconds=86400)
crl_config = vault.pki_secret.SecretBackendCrlConfig("crl_config",
    backend=pki.path,
    expiry="72h",
    disable=False)
Copy
package main

import (
	"github.com/pulumi/pulumi-vault/sdk/v6/go/vault"
	"github.com/pulumi/pulumi-vault/sdk/v6/go/vault/pkisecret"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		pki, err := vault.NewMount(ctx, "pki", &vault.MountArgs{
			Path:                   pulumi.String("%s"),
			Type:                   pulumi.String("pki"),
			DefaultLeaseTtlSeconds: pulumi.Int(3600),
			MaxLeaseTtlSeconds:     pulumi.Int(86400),
		})
		if err != nil {
			return err
		}
		_, err = pkisecret.NewSecretBackendCrlConfig(ctx, "crl_config", &pkisecret.SecretBackendCrlConfigArgs{
			Backend: pki.Path,
			Expiry:  pulumi.String("72h"),
			Disable: pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vault = Pulumi.Vault;

return await Deployment.RunAsync(() => 
{
    var pki = new Vault.Mount("pki", new()
    {
        Path = "%s",
        Type = "pki",
        DefaultLeaseTtlSeconds = 3600,
        MaxLeaseTtlSeconds = 86400,
    });

    var crlConfig = new Vault.PkiSecret.SecretBackendCrlConfig("crl_config", new()
    {
        Backend = pki.Path,
        Expiry = "72h",
        Disable = false,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vault.Mount;
import com.pulumi.vault.MountArgs;
import com.pulumi.vault.pkiSecret.SecretBackendCrlConfig;
import com.pulumi.vault.pkiSecret.SecretBackendCrlConfigArgs;
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 pki = new Mount("pki", MountArgs.builder()
            .path("%s")
            .type("pki")
            .defaultLeaseTtlSeconds(3600)
            .maxLeaseTtlSeconds(86400)
            .build());

        var crlConfig = new SecretBackendCrlConfig("crlConfig", SecretBackendCrlConfigArgs.builder()
            .backend(pki.path())
            .expiry("72h")
            .disable(false)
            .build());

    }
}
Copy
resources:
  pki:
    type: vault:Mount
    properties:
      path: '%s'
      type: pki
      defaultLeaseTtlSeconds: 3600
      maxLeaseTtlSeconds: 86400
  crlConfig:
    type: vault:pkiSecret:SecretBackendCrlConfig
    name: crl_config
    properties:
      backend: ${pki.path}
      expiry: 72h
      disable: false
Copy

Create SecretBackendCrlConfig Resource

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

Constructor syntax

new SecretBackendCrlConfig(name: string, args: SecretBackendCrlConfigArgs, opts?: CustomResourceOptions);
@overload
def SecretBackendCrlConfig(resource_name: str,
                           args: SecretBackendCrlConfigArgs,
                           opts: Optional[ResourceOptions] = None)

@overload
def SecretBackendCrlConfig(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           backend: Optional[str] = None,
                           enable_delta: Optional[bool] = None,
                           auto_rebuild_grace_period: Optional[str] = None,
                           cross_cluster_revocation: Optional[bool] = None,
                           delta_rebuild_interval: Optional[str] = None,
                           disable: Optional[bool] = None,
                           auto_rebuild: Optional[bool] = None,
                           expiry: Optional[str] = None,
                           max_crl_entries: Optional[int] = None,
                           namespace: Optional[str] = None,
                           ocsp_disable: Optional[bool] = None,
                           ocsp_expiry: Optional[str] = None,
                           unified_crl: Optional[bool] = None,
                           unified_crl_on_existing_paths: Optional[bool] = None)
func NewSecretBackendCrlConfig(ctx *Context, name string, args SecretBackendCrlConfigArgs, opts ...ResourceOption) (*SecretBackendCrlConfig, error)
public SecretBackendCrlConfig(string name, SecretBackendCrlConfigArgs args, CustomResourceOptions? opts = null)
public SecretBackendCrlConfig(String name, SecretBackendCrlConfigArgs args)
public SecretBackendCrlConfig(String name, SecretBackendCrlConfigArgs args, CustomResourceOptions options)
type: vault:pkiSecret:SecretBackendCrlConfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SecretBackendCrlConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SecretBackendCrlConfigArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SecretBackendCrlConfigArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SecretBackendCrlConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SecretBackendCrlConfigArgs
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 secretBackendCrlConfigResource = new Vault.PkiSecret.SecretBackendCrlConfig("secretBackendCrlConfigResource", new()
{
    Backend = "string",
    EnableDelta = false,
    AutoRebuildGracePeriod = "string",
    CrossClusterRevocation = false,
    DeltaRebuildInterval = "string",
    Disable = false,
    AutoRebuild = false,
    Expiry = "string",
    MaxCrlEntries = 0,
    Namespace = "string",
    OcspDisable = false,
    OcspExpiry = "string",
    UnifiedCrl = false,
    UnifiedCrlOnExistingPaths = false,
});
Copy
example, err := pkiSecret.NewSecretBackendCrlConfig(ctx, "secretBackendCrlConfigResource", &pkiSecret.SecretBackendCrlConfigArgs{
	Backend:                   pulumi.String("string"),
	EnableDelta:               pulumi.Bool(false),
	AutoRebuildGracePeriod:    pulumi.String("string"),
	CrossClusterRevocation:    pulumi.Bool(false),
	DeltaRebuildInterval:      pulumi.String("string"),
	Disable:                   pulumi.Bool(false),
	AutoRebuild:               pulumi.Bool(false),
	Expiry:                    pulumi.String("string"),
	MaxCrlEntries:             pulumi.Int(0),
	Namespace:                 pulumi.String("string"),
	OcspDisable:               pulumi.Bool(false),
	OcspExpiry:                pulumi.String("string"),
	UnifiedCrl:                pulumi.Bool(false),
	UnifiedCrlOnExistingPaths: pulumi.Bool(false),
})
Copy
var secretBackendCrlConfigResource = new SecretBackendCrlConfig("secretBackendCrlConfigResource", SecretBackendCrlConfigArgs.builder()
    .backend("string")
    .enableDelta(false)
    .autoRebuildGracePeriod("string")
    .crossClusterRevocation(false)
    .deltaRebuildInterval("string")
    .disable(false)
    .autoRebuild(false)
    .expiry("string")
    .maxCrlEntries(0)
    .namespace("string")
    .ocspDisable(false)
    .ocspExpiry("string")
    .unifiedCrl(false)
    .unifiedCrlOnExistingPaths(false)
    .build());
Copy
secret_backend_crl_config_resource = vault.pki_secret.SecretBackendCrlConfig("secretBackendCrlConfigResource",
    backend="string",
    enable_delta=False,
    auto_rebuild_grace_period="string",
    cross_cluster_revocation=False,
    delta_rebuild_interval="string",
    disable=False,
    auto_rebuild=False,
    expiry="string",
    max_crl_entries=0,
    namespace="string",
    ocsp_disable=False,
    ocsp_expiry="string",
    unified_crl=False,
    unified_crl_on_existing_paths=False)
Copy
const secretBackendCrlConfigResource = new vault.pkisecret.SecretBackendCrlConfig("secretBackendCrlConfigResource", {
    backend: "string",
    enableDelta: false,
    autoRebuildGracePeriod: "string",
    crossClusterRevocation: false,
    deltaRebuildInterval: "string",
    disable: false,
    autoRebuild: false,
    expiry: "string",
    maxCrlEntries: 0,
    namespace: "string",
    ocspDisable: false,
    ocspExpiry: "string",
    unifiedCrl: false,
    unifiedCrlOnExistingPaths: false,
});
Copy
type: vault:pkiSecret:SecretBackendCrlConfig
properties:
    autoRebuild: false
    autoRebuildGracePeriod: string
    backend: string
    crossClusterRevocation: false
    deltaRebuildInterval: string
    disable: false
    enableDelta: false
    expiry: string
    maxCrlEntries: 0
    namespace: string
    ocspDisable: false
    ocspExpiry: string
    unifiedCrl: false
    unifiedCrlOnExistingPaths: false
Copy

SecretBackendCrlConfig 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 SecretBackendCrlConfig resource accepts the following input properties:

Backend
This property is required.
Changes to this property will trigger replacement.
string
The path the PKI secret backend is mounted at, with no leading or trailing /s.
AutoRebuild bool
Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
AutoRebuildGracePeriod string
Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
CrossClusterRevocation bool
Enable cross-cluster revocation request queues. Vault 1.13+
DeltaRebuildInterval string
Interval to check for new revocations on, to regenerate the delta CRL.
Disable bool
Disables or enables CRL building.
EnableDelta bool
Enables building of delta CRLs with up-to-date revocation information, augmenting the last complete CRL. Vault 1.12+
Expiry string
Specifies the time until expiration.
MaxCrlEntries int
The maximum number of entries a CRL can contain. This option exists to prevent accidental runaway issuance/revocation from overloading Vault. If set to -1, the limit is disabled. Vault 1.19
Namespace Changes to this property will trigger replacement. 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.
OcspDisable bool
Disables the OCSP responder in Vault. Vault 1.12+
OcspExpiry string
The amount of time an OCSP response can be cached for, useful for OCSP stapling refresh durations. Vault 1.12+
UnifiedCrl bool
Enables unified CRL and OCSP building. Vault 1.13+
UnifiedCrlOnExistingPaths bool
Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
Backend
This property is required.
Changes to this property will trigger replacement.
string
The path the PKI secret backend is mounted at, with no leading or trailing /s.
AutoRebuild bool
Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
AutoRebuildGracePeriod string
Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
CrossClusterRevocation bool
Enable cross-cluster revocation request queues. Vault 1.13+
DeltaRebuildInterval string
Interval to check for new revocations on, to regenerate the delta CRL.
Disable bool
Disables or enables CRL building.
EnableDelta bool
Enables building of delta CRLs with up-to-date revocation information, augmenting the last complete CRL. Vault 1.12+
Expiry string
Specifies the time until expiration.
MaxCrlEntries int
The maximum number of entries a CRL can contain. This option exists to prevent accidental runaway issuance/revocation from overloading Vault. If set to -1, the limit is disabled. Vault 1.19
Namespace Changes to this property will trigger replacement. 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.
OcspDisable bool
Disables the OCSP responder in Vault. Vault 1.12+
OcspExpiry string
The amount of time an OCSP response can be cached for, useful for OCSP stapling refresh durations. Vault 1.12+
UnifiedCrl bool
Enables unified CRL and OCSP building. Vault 1.13+
UnifiedCrlOnExistingPaths bool
Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
backend
This property is required.
Changes to this property will trigger replacement.
String
The path the PKI secret backend is mounted at, with no leading or trailing /s.
autoRebuild Boolean
Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
autoRebuildGracePeriod String
Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
crossClusterRevocation Boolean
Enable cross-cluster revocation request queues. Vault 1.13+
deltaRebuildInterval String
Interval to check for new revocations on, to regenerate the delta CRL.
disable Boolean
Disables or enables CRL building.
enableDelta Boolean
Enables building of delta CRLs with up-to-date revocation information, augmenting the last complete CRL. Vault 1.12+
expiry String
Specifies the time until expiration.
maxCrlEntries Integer
The maximum number of entries a CRL can contain. This option exists to prevent accidental runaway issuance/revocation from overloading Vault. If set to -1, the limit is disabled. Vault 1.19
namespace Changes to this property will trigger replacement. 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.
ocspDisable Boolean
Disables the OCSP responder in Vault. Vault 1.12+
ocspExpiry String
The amount of time an OCSP response can be cached for, useful for OCSP stapling refresh durations. Vault 1.12+
unifiedCrl Boolean
Enables unified CRL and OCSP building. Vault 1.13+
unifiedCrlOnExistingPaths Boolean
Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
backend
This property is required.
Changes to this property will trigger replacement.
string
The path the PKI secret backend is mounted at, with no leading or trailing /s.
autoRebuild boolean
Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
autoRebuildGracePeriod string
Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
crossClusterRevocation boolean
Enable cross-cluster revocation request queues. Vault 1.13+
deltaRebuildInterval string
Interval to check for new revocations on, to regenerate the delta CRL.
disable boolean
Disables or enables CRL building.
enableDelta boolean
Enables building of delta CRLs with up-to-date revocation information, augmenting the last complete CRL. Vault 1.12+
expiry string
Specifies the time until expiration.
maxCrlEntries number
The maximum number of entries a CRL can contain. This option exists to prevent accidental runaway issuance/revocation from overloading Vault. If set to -1, the limit is disabled. Vault 1.19
namespace Changes to this property will trigger replacement. 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.
ocspDisable boolean
Disables the OCSP responder in Vault. Vault 1.12+
ocspExpiry string
The amount of time an OCSP response can be cached for, useful for OCSP stapling refresh durations. Vault 1.12+
unifiedCrl boolean
Enables unified CRL and OCSP building. Vault 1.13+
unifiedCrlOnExistingPaths boolean
Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
backend
This property is required.
Changes to this property will trigger replacement.
str
The path the PKI secret backend is mounted at, with no leading or trailing /s.
auto_rebuild bool
Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
auto_rebuild_grace_period str
Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
cross_cluster_revocation bool
Enable cross-cluster revocation request queues. Vault 1.13+
delta_rebuild_interval str
Interval to check for new revocations on, to regenerate the delta CRL.
disable bool
Disables or enables CRL building.
enable_delta bool
Enables building of delta CRLs with up-to-date revocation information, augmenting the last complete CRL. Vault 1.12+
expiry str
Specifies the time until expiration.
max_crl_entries int
The maximum number of entries a CRL can contain. This option exists to prevent accidental runaway issuance/revocation from overloading Vault. If set to -1, the limit is disabled. Vault 1.19
namespace Changes to this property will trigger replacement. 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.
ocsp_disable bool
Disables the OCSP responder in Vault. Vault 1.12+
ocsp_expiry str
The amount of time an OCSP response can be cached for, useful for OCSP stapling refresh durations. Vault 1.12+
unified_crl bool
Enables unified CRL and OCSP building. Vault 1.13+
unified_crl_on_existing_paths bool
Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
backend
This property is required.
Changes to this property will trigger replacement.
String
The path the PKI secret backend is mounted at, with no leading or trailing /s.
autoRebuild Boolean
Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
autoRebuildGracePeriod String
Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
crossClusterRevocation Boolean
Enable cross-cluster revocation request queues. Vault 1.13+
deltaRebuildInterval String
Interval to check for new revocations on, to regenerate the delta CRL.
disable Boolean
Disables or enables CRL building.
enableDelta Boolean
Enables building of delta CRLs with up-to-date revocation information, augmenting the last complete CRL. Vault 1.12+
expiry String
Specifies the time until expiration.
maxCrlEntries Number
The maximum number of entries a CRL can contain. This option exists to prevent accidental runaway issuance/revocation from overloading Vault. If set to -1, the limit is disabled. Vault 1.19
namespace Changes to this property will trigger replacement. 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.
ocspDisable Boolean
Disables the OCSP responder in Vault. Vault 1.12+
ocspExpiry String
The amount of time an OCSP response can be cached for, useful for OCSP stapling refresh durations. Vault 1.12+
unifiedCrl Boolean
Enables unified CRL and OCSP building. Vault 1.13+
unifiedCrlOnExistingPaths Boolean
Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing SecretBackendCrlConfig Resource

Get an existing SecretBackendCrlConfig 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?: SecretBackendCrlConfigState, opts?: CustomResourceOptions): SecretBackendCrlConfig
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        auto_rebuild: Optional[bool] = None,
        auto_rebuild_grace_period: Optional[str] = None,
        backend: Optional[str] = None,
        cross_cluster_revocation: Optional[bool] = None,
        delta_rebuild_interval: Optional[str] = None,
        disable: Optional[bool] = None,
        enable_delta: Optional[bool] = None,
        expiry: Optional[str] = None,
        max_crl_entries: Optional[int] = None,
        namespace: Optional[str] = None,
        ocsp_disable: Optional[bool] = None,
        ocsp_expiry: Optional[str] = None,
        unified_crl: Optional[bool] = None,
        unified_crl_on_existing_paths: Optional[bool] = None) -> SecretBackendCrlConfig
func GetSecretBackendCrlConfig(ctx *Context, name string, id IDInput, state *SecretBackendCrlConfigState, opts ...ResourceOption) (*SecretBackendCrlConfig, error)
public static SecretBackendCrlConfig Get(string name, Input<string> id, SecretBackendCrlConfigState? state, CustomResourceOptions? opts = null)
public static SecretBackendCrlConfig get(String name, Output<String> id, SecretBackendCrlConfigState state, CustomResourceOptions options)
resources:  _:    type: vault:pkiSecret:SecretBackendCrlConfig    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AutoRebuild bool
Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
AutoRebuildGracePeriod string
Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
Backend Changes to this property will trigger replacement. string
The path the PKI secret backend is mounted at, with no leading or trailing /s.
CrossClusterRevocation bool
Enable cross-cluster revocation request queues. Vault 1.13+
DeltaRebuildInterval string
Interval to check for new revocations on, to regenerate the delta CRL.
Disable bool
Disables or enables CRL building.
EnableDelta bool
Enables building of delta CRLs with up-to-date revocation information, augmenting the last complete CRL. Vault 1.12+
Expiry string
Specifies the time until expiration.
MaxCrlEntries int
The maximum number of entries a CRL can contain. This option exists to prevent accidental runaway issuance/revocation from overloading Vault. If set to -1, the limit is disabled. Vault 1.19
Namespace Changes to this property will trigger replacement. 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.
OcspDisable bool
Disables the OCSP responder in Vault. Vault 1.12+
OcspExpiry string
The amount of time an OCSP response can be cached for, useful for OCSP stapling refresh durations. Vault 1.12+
UnifiedCrl bool
Enables unified CRL and OCSP building. Vault 1.13+
UnifiedCrlOnExistingPaths bool
Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
AutoRebuild bool
Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
AutoRebuildGracePeriod string
Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
Backend Changes to this property will trigger replacement. string
The path the PKI secret backend is mounted at, with no leading or trailing /s.
CrossClusterRevocation bool
Enable cross-cluster revocation request queues. Vault 1.13+
DeltaRebuildInterval string
Interval to check for new revocations on, to regenerate the delta CRL.
Disable bool
Disables or enables CRL building.
EnableDelta bool
Enables building of delta CRLs with up-to-date revocation information, augmenting the last complete CRL. Vault 1.12+
Expiry string
Specifies the time until expiration.
MaxCrlEntries int
The maximum number of entries a CRL can contain. This option exists to prevent accidental runaway issuance/revocation from overloading Vault. If set to -1, the limit is disabled. Vault 1.19
Namespace Changes to this property will trigger replacement. 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.
OcspDisable bool
Disables the OCSP responder in Vault. Vault 1.12+
OcspExpiry string
The amount of time an OCSP response can be cached for, useful for OCSP stapling refresh durations. Vault 1.12+
UnifiedCrl bool
Enables unified CRL and OCSP building. Vault 1.13+
UnifiedCrlOnExistingPaths bool
Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
autoRebuild Boolean
Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
autoRebuildGracePeriod String
Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
backend Changes to this property will trigger replacement. String
The path the PKI secret backend is mounted at, with no leading or trailing /s.
crossClusterRevocation Boolean
Enable cross-cluster revocation request queues. Vault 1.13+
deltaRebuildInterval String
Interval to check for new revocations on, to regenerate the delta CRL.
disable Boolean
Disables or enables CRL building.
enableDelta Boolean
Enables building of delta CRLs with up-to-date revocation information, augmenting the last complete CRL. Vault 1.12+
expiry String
Specifies the time until expiration.
maxCrlEntries Integer
The maximum number of entries a CRL can contain. This option exists to prevent accidental runaway issuance/revocation from overloading Vault. If set to -1, the limit is disabled. Vault 1.19
namespace Changes to this property will trigger replacement. 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.
ocspDisable Boolean
Disables the OCSP responder in Vault. Vault 1.12+
ocspExpiry String
The amount of time an OCSP response can be cached for, useful for OCSP stapling refresh durations. Vault 1.12+
unifiedCrl Boolean
Enables unified CRL and OCSP building. Vault 1.13+
unifiedCrlOnExistingPaths Boolean
Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
autoRebuild boolean
Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
autoRebuildGracePeriod string
Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
backend Changes to this property will trigger replacement. string
The path the PKI secret backend is mounted at, with no leading or trailing /s.
crossClusterRevocation boolean
Enable cross-cluster revocation request queues. Vault 1.13+
deltaRebuildInterval string
Interval to check for new revocations on, to regenerate the delta CRL.
disable boolean
Disables or enables CRL building.
enableDelta boolean
Enables building of delta CRLs with up-to-date revocation information, augmenting the last complete CRL. Vault 1.12+
expiry string
Specifies the time until expiration.
maxCrlEntries number
The maximum number of entries a CRL can contain. This option exists to prevent accidental runaway issuance/revocation from overloading Vault. If set to -1, the limit is disabled. Vault 1.19
namespace Changes to this property will trigger replacement. 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.
ocspDisable boolean
Disables the OCSP responder in Vault. Vault 1.12+
ocspExpiry string
The amount of time an OCSP response can be cached for, useful for OCSP stapling refresh durations. Vault 1.12+
unifiedCrl boolean
Enables unified CRL and OCSP building. Vault 1.13+
unifiedCrlOnExistingPaths boolean
Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
auto_rebuild bool
Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
auto_rebuild_grace_period str
Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
backend Changes to this property will trigger replacement. str
The path the PKI secret backend is mounted at, with no leading or trailing /s.
cross_cluster_revocation bool
Enable cross-cluster revocation request queues. Vault 1.13+
delta_rebuild_interval str
Interval to check for new revocations on, to regenerate the delta CRL.
disable bool
Disables or enables CRL building.
enable_delta bool
Enables building of delta CRLs with up-to-date revocation information, augmenting the last complete CRL. Vault 1.12+
expiry str
Specifies the time until expiration.
max_crl_entries int
The maximum number of entries a CRL can contain. This option exists to prevent accidental runaway issuance/revocation from overloading Vault. If set to -1, the limit is disabled. Vault 1.19
namespace Changes to this property will trigger replacement. 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.
ocsp_disable bool
Disables the OCSP responder in Vault. Vault 1.12+
ocsp_expiry str
The amount of time an OCSP response can be cached for, useful for OCSP stapling refresh durations. Vault 1.12+
unified_crl bool
Enables unified CRL and OCSP building. Vault 1.13+
unified_crl_on_existing_paths bool
Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
autoRebuild Boolean
Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
autoRebuildGracePeriod String
Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
backend Changes to this property will trigger replacement. String
The path the PKI secret backend is mounted at, with no leading or trailing /s.
crossClusterRevocation Boolean
Enable cross-cluster revocation request queues. Vault 1.13+
deltaRebuildInterval String
Interval to check for new revocations on, to regenerate the delta CRL.
disable Boolean
Disables or enables CRL building.
enableDelta Boolean
Enables building of delta CRLs with up-to-date revocation information, augmenting the last complete CRL. Vault 1.12+
expiry String
Specifies the time until expiration.
maxCrlEntries Number
The maximum number of entries a CRL can contain. This option exists to prevent accidental runaway issuance/revocation from overloading Vault. If set to -1, the limit is disabled. Vault 1.19
namespace Changes to this property will trigger replacement. 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.
ocspDisable Boolean
Disables the OCSP responder in Vault. Vault 1.12+
ocspExpiry String
The amount of time an OCSP response can be cached for, useful for OCSP stapling refresh durations. Vault 1.12+
unifiedCrl Boolean
Enables unified CRL and OCSP building. Vault 1.13+
unifiedCrlOnExistingPaths Boolean
Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+

Package Details

Repository
Vault pulumi/pulumi-vault
License
Apache-2.0
Notes
This Pulumi package is based on the vault Terraform Provider.