Questions tagged [secretsmanager]
34 questions
1
vote
1 answer
Core 3.1 API in ServiceFabric Solution, Local Secrets Not Read
I am pulling my hair out right about now. I have tried getting the Secrets multiple different ways. Here is where I am at:
public class Startup
{
public Startup(IConfiguration configuration, IWebHostEnvironment env)
{
…

Keith Barrows
- 24,802
- 26
- 88
- 134
1
vote
2 answers
PowerShell script for removing Key Vault secrets getting 409 Conflict errors
I have written a PowerShell 5.1 script that removes secrets from an Azure Key Vault that has soft-delete enabled. I've learned that to successfully purge the secrets from such a Key Vault you have to:
Delete the secret.
Delete the secret again,…

user1816236
- 33
- 6
1
vote
1 answer
.net core 3.1 call to User Secrets for SendGrid keys returns null values
I have set up a project following https://learn.microsoft.com/en-us/aspnet/core/security/authentication/accconfirm?view=aspnetcore-3.1&tabs=visual-studio
From Startup.cs:
services.AddTransient();
…

Kal
- 378
- 3
- 15
1
vote
0 answers
secrets.xml cannot be found at the auto-generated path
I'm trying to use a local secrets.xml file but an error tells me that it can't be found.
I right-clicked on the project and selected 'Manage User Secrets, which created the GUID-named folder and file for me. That same GUID appears in the…

awj
- 7,482
- 10
- 66
- 120
1
vote
1 answer
How to find the cache location for AWS Secrets Manager
I am using parameter store for storing the database credentials, and accessing them using a talend job. However, due to multiple jobs accessing these parameters at the same time; we are facing issue to scale the parameter store, as it reached…

Satya
- 167
- 3
- 11
1
vote
1 answer
Should you store non-secret configuration together with secrets in a store like vault?
Is there a reason to store non-secret key/value configuration in a separate key/value store like consul, rather than storing it together with secrets in a secret k/v store like vault?
One possible reason is that vault may provide extra overhead for…

yosefrow
- 2,128
- 20
- 29
0
votes
0 answers
Can't create environment file with aws secretsmanager command
I am trying to run the following command on an EC2 instance I manage.
sudo aws secretsmanager get-secret-value --secret-id "KingsKidzApplication-env" --region "ap-southeast-2" | jq -r '.SecretString' | jq -r…

Harlan Gray
- 341
- 6
- 20
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
0 answers
GCP KMS to store credentials?
The answer below looks skeptical to me. Cloud KMS encrypts data and returns the encrypted ciphertext. Cloud KMS does not store the secret, only the keys to encrypt/decrypt.
Shouldn't the Secret Manager be a right choice?

Snehal Masne
- 3,403
- 3
- 31
- 51
0
votes
1 answer
QUARKUS: get aws secret from secretsmanager as environnement variable
how to get secret as environnement variable from aws secretsmanager by quarkus extension :
io.quarkiverse.amazonservices:quarkus-amazon-secretsmanager

Mohamed r
- 25
- 4
0
votes
1 answer
Akeyless and Snowflake key pair rotation
So I have a Snowflake instance I am trying to setup for (pub/priv) key authentication for each user w/ key rotation.
Every user has a akeyless account and I'm new to akeyless/secret mgmt systems in general. After reading the docs though I feel more…

Kenneth Cox
- 84
- 1
- 6
0
votes
1 answer
AWS sam cli local invoke lambda with secrets manager port undefined
I am trying to test my lambda function locally using sam local invoke. Error says UnknownEndpoint: Inaccessible host: secretsmanager.us-east-1.amazonaws.com' at port undefined'
This error is being thrown from inside my lambda function code as that…

Jaf
- 811
- 2
- 7
- 9
0
votes
1 answer
Using BeyondTrust for DevSecOps
What is the main difference between BeyondTrust Password Safe and DevOps Secrets safe? as my understanding is that BeyondTrust Password Safe can be used to save code and tool passwords from the DevOps process, so why would I need DevOps Secrets…

Roro
- 97
- 3
- 13
0
votes
1 answer
how to put my github orgname & access token in this line "requests.get(url='https://api.github.com/users/' + orgname + '/repos?page={}'.format(page))"
I am trying to run this python script made by trufflehog to use their open-source scanner for scanning all repo's of an account or organization at once.
Does anyone know how i can put my orgname and access token in the url without messing up the…

adampz
- 1
0
votes
1 answer
AWS secretsmanager, lambda, access denied even with admin permissions
I am stuck configuring my AWS Lambda to access a secret. I have done it many times, all the existing resources works properly, but now a new one does not want to.
Stack:
I have a secret in secretsmanager and a lambda (in vpc)
What I want: read the…

Senki1988
- 83
- 1
- 6