vault_transit_secret_cache_config

Configure the cache for the Transit Secret Backend in Vault.

Example Usage

resource "vault_mount" "transit" {
  path                      = "transit"
  type                      = "transit"
  description               = "Example description"
  default_lease_ttl_seconds = 3600
  max_lease_ttl_seconds     = 86400
}

resource "vault_transit_secret_cache_config" "cfg" {
  backend = vault_mount.transit.path
  size    = 500
}

Argument Reference

The following arguments are supported:

Attributes Reference

No additional attributes are exported by this resource.