External Secrets Operator integrates with Yandex Lockbox for secret management.
At the moment, authorized key authentication is only supported:
bash
yc iam service-account create --name eso-service-account
authorized-key.json file:
bash
yc iam key create \
--service-account-name eso-service-account \
--output authorized-key.json
bash
kubectl create secret generic yc-auth --from-file=authorized-key=authorized-key.json
Create a SecretStore pointing to yc-auth k8s secret:
apiVersion: external-secrets.io/v1
kind: SecretStore
metadata:
name: secret-store
spec:
provider:
yandexlockbox:
auth:
authorizedKeySecretRef:
name: yc-auth
key: authorized-key
# Optionally, to enable fetching secrets by name:
#
# fetching: # place "fetching:" on the same level as "auth:"
# byName:
# folderId: ***** # ID of the folder to fetch secrets from
NOTE: In case of a ClusterSecretStore, Be sure to provide namespace in all authorizedKeySecretRef with the namespace where the secret resides.
To make External Secrets Operator sync a k8s secret with a Lockbox secret:
bash
yc lockbox secret create \
--name lockbox-secret \
--payload '[{"key": "password","textValue": "p@$$w0rd"}]'
lockbox.payloadViewer role
for accessing the lockbox-secret payload to the service account used for authentication:
bash
yc lockbox secret add-access-binding \
--name lockbox-secret \
--service-account-name eso-service-account \
--role lockbox.payloadViewer
Run the following command to ensure that the correct access binding has been added:
bash
yc lockbox secret list-access-bindings --name lockbox-secret
secret-store and lockbox-secret:
```yaml
apiVersion: external-secrets.io/v1
kind: ExternalSecret
metadata:
name: external-secret
spec:
refreshInterval: 1h
secretStoreRef:
name: secret-store
kind: SecretStore
target:
name: k8s-secret # the target k8s secret name
data:
The operator will fetch the Yandex Lockbox secret and inject it as a Kind=Secret
kubectl get secret k8s-secret -n <namespace> -o jsonpath='{.data.password}' | base64 -d