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,
});
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)
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
	})
}
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,
    });
});
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());
    }
}
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
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 string
- The unique name of the resource.
- args SecretBackendCrlConfigArgs
- 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 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 string
- The unique name of the resource.
- args SecretBackendCrlConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecretBackendCrlConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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,
});
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),
})
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());
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)
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,
});
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
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 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+
- AutoRebuild stringGrace Period 
- Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
- CrossCluster boolRevocation 
- Enable cross-cluster revocation request queues. Vault 1.13+
- DeltaRebuild stringInterval 
- 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.
- MaxCrl intEntries 
- 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 string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis 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+
- UnifiedCrl boolOn Existing Paths 
- Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
- Backend 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+
- AutoRebuild stringGrace Period 
- Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
- CrossCluster boolRevocation 
- Enable cross-cluster revocation request queues. Vault 1.13+
- DeltaRebuild stringInterval 
- 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.
- MaxCrl intEntries 
- 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 string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis 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+
- UnifiedCrl boolOn Existing Paths 
- Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
- backend 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+
- autoRebuild StringGrace Period 
- Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
- crossCluster BooleanRevocation 
- Enable cross-cluster revocation request queues. Vault 1.13+
- deltaRebuild StringInterval 
- 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.
- maxCrl IntegerEntries 
- 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 String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis 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+
- unifiedCrl BooleanOn Existing Paths 
- Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
- backend 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+
- autoRebuild stringGrace Period 
- Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
- crossCluster booleanRevocation 
- Enable cross-cluster revocation request queues. Vault 1.13+
- deltaRebuild stringInterval 
- 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.
- maxCrl numberEntries 
- 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 string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis 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+
- unifiedCrl booleanOn Existing Paths 
- Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
- backend 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_ strgrace_ period 
- Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
- cross_cluster_ boolrevocation 
- Enable cross-cluster revocation request queues. Vault 1.13+
- delta_rebuild_ strinterval 
- 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_ intentries 
- 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 str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis 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_ boolon_ existing_ paths 
- Enables serving the unified CRL and OCSP on the existing, previously cluster-local paths. Vault 1.13+
- backend 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+
- autoRebuild StringGrace Period 
- Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
- crossCluster BooleanRevocation 
- Enable cross-cluster revocation request queues. Vault 1.13+
- deltaRebuild StringInterval 
- 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.
- maxCrl NumberEntries 
- 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 String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis 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+
- unifiedCrl BooleanOn Existing Paths 
- 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) -> SecretBackendCrlConfigfunc 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
- 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.
- AutoRebuild bool
- Enables periodic rebuilding of the CRL upon expiry. Vault 1.12+
- AutoRebuild stringGrace Period 
- Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
- Backend string
- The path the PKI secret backend is mounted at, with no leading or trailing /s.
- CrossCluster boolRevocation 
- Enable cross-cluster revocation request queues. Vault 1.13+
- DeltaRebuild stringInterval 
- 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.
- MaxCrl intEntries 
- 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 string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis 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+
- UnifiedCrl boolOn Existing Paths 
- 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+
- AutoRebuild stringGrace Period 
- Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
- Backend string
- The path the PKI secret backend is mounted at, with no leading or trailing /s.
- CrossCluster boolRevocation 
- Enable cross-cluster revocation request queues. Vault 1.13+
- DeltaRebuild stringInterval 
- 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.
- MaxCrl intEntries 
- 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 string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis 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+
- UnifiedCrl boolOn Existing Paths 
- 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+
- autoRebuild StringGrace Period 
- Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
- backend String
- The path the PKI secret backend is mounted at, with no leading or trailing /s.
- crossCluster BooleanRevocation 
- Enable cross-cluster revocation request queues. Vault 1.13+
- deltaRebuild StringInterval 
- 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.
- maxCrl IntegerEntries 
- 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 String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis 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+
- unifiedCrl BooleanOn Existing Paths 
- 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+
- autoRebuild stringGrace Period 
- Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
- backend string
- The path the PKI secret backend is mounted at, with no leading or trailing /s.
- crossCluster booleanRevocation 
- Enable cross-cluster revocation request queues. Vault 1.13+
- deltaRebuild stringInterval 
- 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.
- maxCrl numberEntries 
- 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 string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis 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+
- unifiedCrl booleanOn Existing Paths 
- 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_ strgrace_ period 
- Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
- backend str
- The path the PKI secret backend is mounted at, with no leading or trailing /s.
- cross_cluster_ boolrevocation 
- Enable cross-cluster revocation request queues. Vault 1.13+
- delta_rebuild_ strinterval 
- 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_ intentries 
- 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 str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis 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_ boolon_ existing_ paths 
- 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+
- autoRebuild StringGrace Period 
- Grace period before CRL expiry to attempt rebuild of CRL. Vault 1.12+
- backend String
- The path the PKI secret backend is mounted at, with no leading or trailing /s.
- crossCluster BooleanRevocation 
- Enable cross-cluster revocation request queues. Vault 1.13+
- deltaRebuild StringInterval 
- 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.
- maxCrl NumberEntries 
- 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 String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The namespaceis 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+
- unifiedCrl BooleanOn Existing Paths 
- 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 vaultTerraform Provider.