Questions tagged [secrets]

37 questions
3
votes
1 answer

GitHub Actions requiring secrets on a fork-origin PR

We have a function code in our organization's GitHub repository that is supposed to get compiled and deployed in an AWS Lambda Function and give emit an expected output. We are trying to implement this as an integration test in CI/CD pipeline using…
Akshay Rane
  • 403
  • 4
  • 13
2
votes
1 answer

Why use AWS Secret Manager instead of environment variables?

https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html Secrets Manager enables you to replace hardcoded credentials in your code, including passwords, with an API call to Secrets Manager to retrieve the secret programmatically. This…
1
vote
1 answer

How to get a list of orphan keyvaults?

I've been struggling in KQL to come up with a query for detecting keyvaults which are not accessed in a certain time range for example (30days) and empty keyvaults no secrets, no certificates etc. further a newbie to KQL here, any suggestions? below…
ferdy
  • 11
  • 3
1
vote
1 answer

GitHub secret created using REST API REST, but value is empty

When I was trying to store a GitHub Actions secret using the REST API, it stored an empty value in secrets. But when I created secrets manually from the GitHub Actions web UI, it stored the value and works perfectly in scripts. curl -L \ -X PUT \ …
1
vote
2 answers

Databricks spark configuration using secrets in property name

Is it possible to refer to a databricks secret in my property name like this: fs.azure.account.auth.type.{{secrets/my_scope/my_secret1}}.dfs.core.windows.net OAuth fs.azure.account.auth.type.{{secrets/my_scope/my_secret2}}.dfs.core.windows.net…
1
vote
1 answer

External secret is not working on kubernetes

I have implemented external secrets to detch values from azure key vault in kubernetes cluster. I worked fine for two environments but in third environment it is not working. It created secret store and validates it but the external secret doesn't…
1
vote
2 answers

How to link SpringBoot application.properties file to Kubernetes ConfigMaps and Secrets

I have to inject DB URL, DB Username and Password variables into a Java Spring Boot Application. I know that these properties reside in the application.properties file under res/ folder. Now as a design change I want to adopt K8s ConfigMaps and…
1
vote
1 answer

how can I locally decrypt already sealed secrets?

I have a question in regards to using sealed-secrets . SealedSecrets solution solves the issue we’ve got: be able to store secrets in our version control. However, we want to be able to re-generate the plain secret file from a sealed-secret file (an…
1
vote
0 answers

Is there a GCP Secrets Manager test double for local development?

I am looking for a locally executable test double (mock/stub/fake etc.) that can be used for replacing the Google Cloud Secrets Manager used by my application. Something like Localstack in case of AWS. This would allow me to start my app locally and…
1
vote
0 answers

Is it possible to sync secrets between Azure Key Vault and Kafka on HDinsight?

I currently have an application deployed on AKS, which produces to a Kafka topic, with Kafka deployed on HDinsight. I want to implement a SASL/OAUTHBEARER as the security mechanism. However, I'd also like the secrets to be stored in Azure Key Vault…
1
vote
1 answer

Is it possible to create a tls kubernetes secret using Azure Key Vault data resources in Terraform?

I have a certificate file and a private key file that I am using to implement tls encrypted traffic for several different k8s pods running under an NGINX ingress load balancer. This works fine (i.e. the web apps are visible and show as secure in a…
az2tonez
  • 86
  • 7
0
votes
0 answers

Unable to fetch secrets from google secret manager in spring application

I'm trying to fetch secrets from Google secret manager but they are fetching it just simply shows the secret name so these all the modifications i did here in my pox.xml i added these dependencies
0
votes
1 answer

How to access GitHub "variables" from GitHub Actions scripts? (env. doesn't work)

I'm trying to access GitHub SECRETS and VARIABLES set at the Repo level and at the Organization level for a GitHub "Actions" script. Here is the script: name: CI (pip) on: [push, pull_request] jobs: build: strategy: matrix: os:…
vy32
  • 28,461
  • 37
  • 122
  • 246
0
votes
1 answer

Bigquery DATABRICKS CONNECTIVITY

How to access data from Big Query to dataframe in databricks using credentials in secrets. df = spark .read .format("bigquery") .option("credentialsFile",credentialfilepath) .option("parentProject",projectName) …
0
votes
0 answers

k8s pods secrets returning undefined in React

I have an issue with env variables that stored in k8s pods. I have created secret named REACT_APP_API_URL, but when i do console.log(process.env.REACT_APP_API_URL) it returning me undefined. I defined my secret using rancher, project was created…
1
2 3