Questions tagged [secrets]
37 questions
0
votes
0 answers
Podman - generate ENV vars with secrets from file
Podman allows the use of a secret. This allows you to pass sensitive values, like credentials or API keys, to a container while running it, but excludes them from commits or exports.
So far I've been using the following format to include a config…

BlueCacti
- 9,729
- 3
- 20
- 24
0
votes
1 answer
In layman's terms what is the definition and difference between Keys, Secrets and certificates in Azure Key Vault?
I am trying to learn about the definition and difference between Keys, Secrets and Certificates in Azure Key Vault. I have been reading through the post below a couple of times but to me it seems a bit technical:
What is difference between Keys and…

Caze982
- 1
- 1
0
votes
0 answers
Is there a secure method to search for Hashicorp Vault secrets leaked in Git commits?
There is a HashiCorp Vault for secrets keeping. And there is a GitLab for code. We want to find some way to explicitly (and securely) know: is there an explicit leak of a secret stored in our Vault in some of repo's commits
We tried to use Secret…

kodzi
- 1
- 1
0
votes
1 answer
Allow users to update secrets on a running Streamlit app?
I want to launch a public Streamlit app which uses Google Text-to-Speech and OpenAI API. What I would really want to do is to let users insert their API keys to be used with the app.
Is there a way to do that? So far the best solution I have is to…

shakedzy
- 2,853
- 5
- 32
- 62
0
votes
0 answers
How can I load Bitwarden Secrets into docker-compose
Im trying to load Secrets (to be more precise an .env File) from Bitwarden into a docker-compose.yml File using only a Bitwarden access Token. So more or less like in the Githubactions but as a docker-compose.yml.
From the very slim Documentation i…

BIzZmarCk
- 11
- 4
0
votes
0 answers
Use secrets of the reusable workflow from the caller workflow
I want to use the secrets of a called workflow residing inside a different repository from the caller workflow. How can I use them?
Action 1 (Inside repo X)
name: Call GitHobbit
on:
push:
branches:
- 'main'
jobs:
call-workflow:
…

Karan Mehta
- 9
- 2
0
votes
1 answer
Deploy my machine's code on Heroku or ignore gitignore (on Heroku only)
I'm currently using Heroku to run my web application. It is currently closed source, but I'd like to make it open source. I was wondering how I could push my local machine code to Heroku before I commit it to github (or for it to still read the…
0
votes
0 answers
Configuring Vault on Kubernetes to store a username/password
I'm doing an internship in Cloud/DevOps, and I'm having a bit of trouble testing Vault! I'm supposed to learn how to use it, and my idea was to create a secret, to store it in Vault, and then create a YAML that will pull the secret and use it.…
0
votes
1 answer
How do I supply a secret to az containerapps compose
I'm trying to set-up my first azure containerapps cloud deployment.
As multiply containers are involved, I want to utilize the sub command
az containerapp compose create
referencing our private docker registry (command line parameters…

bsailer
- 51
- 5
0
votes
1 answer
How to use env variables set in .yml file in my script
I am new to use the drone secrets, need help in below.
I have defined few secrets in the drone.io secrets settings. And now I want to access them in my test file.
Now in my repo there is a file called production.yml file in which I have defined the…
0
votes
2 answers
managing secrets with selenium webdriver
I need to login to a webpage using selenium webdriver to download some PDFs, for this I need to use 2 sets of credentials that i need to pass as plaintext.
What would be the best way to do this without hardcoding the passwords?
i was hardcoding…

Omar Morales Rivera
- 195
- 1
- 8
0
votes
1 answer
How to add a sealed-secret.yaml file in a Helm chart?
I have a custom helm chart that I wrote which has a deployment.yaml, service.yaml and other yamls. Now, I want to included a sealed-secret.yaml template file such as following in it:
{{- if .Values.sealedSecrets -}}
apiVersion:…

Katlock
- 1,200
- 1
- 17
- 41
0
votes
0 answers
In a web application, what would you consider the best way to store secret keys obtained via an SDK?
Currently I am working on an application that requires secret keys to encrypt and sign information generated by the client and transmited over the wire, these keys are granted per user.
Currently when the user logs in, the keys are downloaded from…

Ray
- 96
- 4
0
votes
0 answers
How do I retrieve a secret in my Expo app?
How do I retrieve a secrete stored using eas secret:create from within my app (created with eas build)?
I recall there was some way to do this but I can't recall how it was done. I vaguely recall something like
import { Secrets } from…

orome
- 45,163
- 57
- 202
- 418
0
votes
1 answer
Dynamic credentials
Does Azure Key Vault support dynamic secrets feature like Hashi Corp vault?
This feature is what required.
https://developer.hashicorp.com/vault/tutorials/db-credentials/database-secrets
This is what I could find about azure key…

Dona Dominic
- 21
- 3