-
View the current secrets and default locations.
# vault secrets list
Vault Secrets List
-
Enable the KV engine.
# vault secrets enable -version=1 kv
Enable KV Engine
-
List the enabled Secrets Engines with details.
# vault secrets list -detailed
Vault Secrets List Detailed
-
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
Vault Seal Wrap
-
Retrieve the secret data.
# vault kv get kv/opt/vault/secret
Retrieve Secret Data