VAULT QUESTIONS MUST BE DEVELOPER-RELATED. Vault is an open-source platform designed to store secrets securely, Questions about configuring vault should be asked on https://serverfault.com. Not to be confused with [ansible-vault].
Questions tagged [vault]
300 questions
0
votes
0 answers
Not getting durl property using Enterprise Vault Search API
I was trying to follow EV Search API to use EV web service search, created proxy classes, the search run and return results, however it only return the default fields, even I set the return fields include durl, it not return the property.
This…

James Zou
- 13
- 1
- 5
0
votes
1 answer
Hashicorp Vault API VAULT_CLIENT_TIMEOUT
Is it possible to set the VAULT_CLIENT_TIMEOUT CLI environment variable with a curl API request?
Maybe exist some header to set this variable (like X-Vault-Token)?
I can't find any information about this in official documentation.

Oleksandr Lytvynskyi
- 25
- 6
0
votes
2 answers
Automatically update vault secrets into kubernetes
All the secrets used by our application are stored in Vault. During deployment, we utilize an internal tool to retrieve secrets from Vault and load them onto the pods. Now, we have a secret which gets updated every month and it requires a restart or…

Sandeep
- 1
0
votes
0 answers
Get secret from multiple hashicorp vaults in one gitlab CI/CD job
I want to know if it is possible, then how can I fetch secrets from 2 different hashicorp vault in one CI/CD job.
I have two vault servers, so there will be two VAULT_SERVER_URL with different Role and Token.
I tried to get secret from one vault but…
0
votes
0 answers
Is it possible to access Vault on a subpath through an NGINX ingress in Kubernetes?
I would like to access Vault-UI through a Kubernetes ingress using NGINX controller. I've tried many things, but the server seems to be doing some redirection.
The simple ingress resources below would not work as the Vault-UI does not know how to…

Pouya Ataei
- 1,959
- 2
- 19
- 30
0
votes
0 answers
Vault-sidecar multi "with secret" command
I am making a template for postgres-exporter and encountered such question. Is it possible to use two or more paths to secrets in the "with secret" section? For example {{ with secret "TEST/A/TEST/DEV_COMMON1" "TEST/A/TEST/DEV_COMMON2"}}?
In this…

Cvitoybamp
- 21
- 4
0
votes
1 answer
Vault login by AWS IAM getting VaultException with X-Vault-AWS-IAM-Server-ID header validation failed
Vault Login by AWS IAM getting below exception.
com.bettercloud.vault.VaultException: Vault responded with HTTP status code: 400
Response body:
{ "errors": [ "error validating X-Vault-AWS-IAM-Server-ID header: expected…

sreemanth pulagam
- 925
- 9
- 24
0
votes
1 answer
Cant map the value form Vault to application.yml
I'm working with HashiCorp Vault and want to map the key-value from Vault json file to a application.yml placeholder, but catching the NPE when making request to call another service
that's my Vault secrets file
{
"vault": {
"region-location":…

Murat Samatov
- 11
- 2
0
votes
0 answers
fetching secret from external vault into kubernetes rancher Cluster
Our goal is to fetch the secret from Hashicorp Vault into kubernetes cluster so secret will be encrypted and we won't save any secret data on anywhere. Trying to use SecretProviderClass way and did the installation with Helm chart. Deploying all…

prakasun
- 103
- 1
- 5
0
votes
1 answer
How to set proxy configuration for vault client when using quarkus-vault?
Using quarkus-vault to retrieve secrets from our openshift, we need to set a proxy to be able to reach the vault server that is outside of the cluster.
Is it possible to do it in application.properties?
We already set proxy for rest-client and…

Patrice Conil
- 83
- 1
- 8
0
votes
0 answers
GitHub action dynamic secrets among multiple jobs
We have a CD pipeline which retrieves secrets from our Vault. Currently our action has multiple calls to the vault action for each job in the workflow. I want to make it cleaner so it calls it once in a job and uses the secret among all the…

osumatu
- 410
- 1
- 8
- 25
0
votes
0 answers
HashiCorp Vault Is it possible to create a custom token and use this token to store a secret via Cubbyhole Response Wrapping?
i want to create a Cubbyhole Response Wrapping token outside of Vault and use this token in Vault to store a secret via Cubbyhole Response Wrapping.
https://developer.hashicorp.com/vault/docs/concepts/response-wrapping
Is this possible?
Offsite…

Jon
- 1
- 1
0
votes
0 answers
how do i read totp generated by the totp secret engine in hashicorp vault using hashi-vault-js node module.?
`vault
// .readKVSecret(api_token, "63ab53521ce9dfe4ed6fad73", "", "iam-users")
.readKVSecret(api_token, "", "", 'totp/sms/code/my-key')
.then((data) => {
console.log("**********data",data);
});
by using above method i can…

Jeet Detroja
- 1
- 2
0
votes
1 answer
How can I read values from HashiCorp Vault into a launch.json debugging configuration for VSCode?
I have a java project that I would like to debug. The project code assumes that certain variables pointing at running services in our remote debugging environment are present, and if they aren't, it will crash.
I'm trying to get debugging working in…

Bill Hurt
- 749
- 1
- 8
- 26
0
votes
0 answers
How to install Highly Available Vault Cluster with Integrated Storage (Raft) on the kubernetes?
This is the article I refer to.
https://developer.hashicorp.com/vault/docs/platform/k8s/helm/examples/ha-with-raft
root@Will-T-PC:~# helm version
version.BuildInfo{Version:"v3.11.1", GitCommit:"293b50c65d4d56187cd4e2f390f0ada46b4c4737",…

Wei Yu
- 97
- 3
- 12