Questions tagged [secrets]
2 questions
0
votes
1 answer
Can you parse JSON keys out of a Google Secrets Manager secret?
Consider the following gcloud command where you inject a Google Secrets Manager secret into your SERVICE Google Cloud Run service—ripped off the Use secrets Cloud Run docs page:
gcloud run services update SERVICE \
…

mbigras
- 289
- 1
- 3
- 11
0
votes
0 answers
Is it okay to pass secrets through the headers of a reverse proxy?
So, I've set up a reverse proxy for multiple domains in nginx like this:
server {
listen 80;
listen [::]:80;
root /var/www/nginx;
index index.html index.htm;
server_name example.com example.org example.net example.nl;
…

Wim ten Brink
- 1,055
- 1
- 6
- 13