Hashicorp Vault
https://www.vaultproject.io/
VaultLoader loads the secret from HashiCorp's Vault. We get the credentials for the vault from the environment variables. The credentials required are as follows:
Usage
Syntax Terms Explanation
vault: Tells that provider is vault and to load data from NodeVault.
(): Parameters for vault. Currently, a single paramater is accepted:
endpoint_url: endpoint url where the NodeVault server is running. If not passed,
VAULT_ENDPOINT_URL
environment variable will be taken. If both are not set, error will be thrown. If both, the environment variable is set and theendpoint_url
is passed, theendpoint_url
will take precedence.
secret-name: The key used for fetching the object details.
Last updated