Introduction
This tutorial assumes you have a work Vault server and are logged in with the root token.
https://dev.to/frederickollinger/production-hashicorp-vault-minimal-configuration-485a
What is a Secrets Engine
"Secrets engines are components which store, generate, or encrypt data."
What is the KV Engine
This engine allows you to store key/value pairs.
A KV2 engine also exists which introduces more complexity. This tutorial will confine itself to the KV1 secrets engine.
Turn on KV Engine
The KV engine is not on my default.
Switch it on:
vault secrets enable -path=kv kv
Create First Secret
vault kv put kv/my-secret my-value=bluedragon
Get First Secret
vault kv put kv/my-secret my-value=bluedragon
Get First Secret
Links
- Minimal Vault Server Setup
https://dev.to/frederickollinger/production-hashicorp-vault-minimal-configuration-485a
- Vault Secrets
Top comments (0)