All Keys, One Secret
To get multiple key-values from an external secret, not having to worry about how many, or what these keys are, we have to use the dataFrom field of the ExternalSecret resource, instead of the data field. We will give an example here with the gcp provider (should work with other providers in the same way).
Please follow the authentication and SecretStore steps of the Google Cloud Secrets Manager guide to setup access to your google cloud account first.
Then create a secret in Google Cloud Secret Manager that contains a JSON string with multiple key values like this:
Let's call this secret all-keys-example-secret on Google Cloud.
Creating dataFrom external secret
Now, when creating our ExternalSecret resource, instead of using the data field, we use the dataFrom field:
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: example
spec:
refreshInterval: 1h # rate SecretManager pulls GCPSM
secretStoreRef:
kind: SecretStore
name: example # name of the SecretStore (or kind specified)
target:
name: secret-to-be-created # name of the k8s Secret to be created
creationPolicy: Owner
dataFrom:
- extract:
key: all-keys-example-secret # name of the GCPSM secret
Whereas, "secret-to-be-created" is the name of Kubernetes secrets that will be created.
Note: Since these secrets are namespace-based resources, you can also explicitly specify the "namespace" under the "metadata" block of the above external secret file.
when we use,
dataFrom:
- extract:
key: all-keys-example-secret
Please note that, "all-keys-example-secret" is the name of your secret present on GCP/AWS secrets manager/Azure
We can pass a few secrets as env variables as below:
env:
- name: key1
valueFrom:
secretKeyRef:
name: secret-to-be-created
key: username
- name: key2
valueFrom:
secretKeyRef:
name: secret-to-be-created
key: surname
Here,
\<key1> and \
\<secret-to-be-created>: is the name of your Kubernetes secret created by you.
\<username> and \
To check both values we can run:
kubectl get secret secret-to-be-created -n <namespace> -o jsonpath='{.data.username}' | base64 -d
kubectl get secret secret-to-be-created -n <namespace> -o jsonpath='{.data.surname}' | base64 -d
Also, if you have a large number of secrets and you want to pass all of them as enviromnent variables, then either you can replicate the above steps in your deployment file for all the keys or you can use the envFrom block as below:
spec:
containers:
- command:
- mkdir abc.sh
envFrom:
- secretRef:
name: secret-to-be-created