Test Vault Integration with Utimaco HSM

  1. View the current secrets and default locations.

# vault secrets list
image-20250903-025450.png


Vault Secrets List

  1. Enable the KV engine.

# vault secrets enable -version=1 kv
image-20250903-025615.png

Enable KV Engine

  1. List the enabled Secrets Engines with details.

# vault secrets list -detailed              
image-20250903-030131.png

Vault Secrets List Detailed

  1. To test the seal wrap feature, write some secret data and add it to the Vault's key/value storage area.

# vault kv put kv/opt/vault/secret key=test_secret
image-20250903-030304.png

Vault Seal Wrap

  1. Retrieve the secret data.

# vault kv get kv/opt/vault/secret
image-20250903-030436.png

Retrieve Secret Data