vhsm secrets enable
Learn to enable secrets engine at a specific path.
This command enables a secrets engine at a given path. If a secrets engine already exists at the specified path, an error appears. After enabling the engine, additional configuration is usually required, which varies based on the engine type.
By default, secrets engines are enabled at a path corresponding to their TYPE
, but users can customize this using the -path
option.
Case sensitivity
The path where secrets engines are enabled is case-sensitive. For example:
Enabling a KV secrets engine at
kv/
andKV/
creates two distinct instances of KV secrets engines.
Usage
Examples
Enable the AWS secrets engine at aws/
Output
Enable the SSH secrets engine at a custom path (
ssh-prod/
)Enable the database secrets engine with a maximum TTL of 30m
Enable a custom plugin (
my-plugin
) after registration
Available Options
-audit-non-hmac-request-keys=<string>
Keys not HMAC'd by audit devices in the request data. Can be specified multiple times.
-audit-non-hmac-response-keys=<string>
Keys not HMAC'd by audit devices in the response data. Can be specified multiple times.
-default-lease-ttl=<duration>
Default lease TTL for the secrets engine. Uses vHSM server's default if unspecified.
-description=<string>
Human-readable description of the secrets engine.
-force-no-cache
Disables caching for the secrets engine. Defaults to vHSM's global settings.
-local
Marks the secrets engine as local-only (not replicated).
-max-lease-ttl=<duration>
Maximum lease TTL for the secrets engine. Uses vHSM’s max TTL if unspecified.
-path=<string>
Custom path where the secrets engine is accessible. Defaults to the type
of the engine. Paths are case-sensitive.
-passthrough-request-headers=<string>
Request headers passed to the secrets engine. Can be specified multiple times.
-allowed-response-headers=<string>
Response headers the secrets engine is allowed to set. Can be specified multiple times.
-allowed-managed-keys=<string>
Managed key names the mount can access. Can be a comma-separated list or specified multiple times.
-plugin-version=<string>
Specifies the plugin's semantic version to use. Defaults to built-in or unversioned plugin.
Last updated
Was this helpful?