| 12345678910111213141516171819 |
- apiVersion: external-secrets.io/v1
- kind: ExternalSecret
- metadata:
- name: database-credentials
- spec:
- refreshInterval: 1h
- secretStoreRef:
- kind: SecretStore
- name: akeyless-secret-store # Must match SecretStore on the cluster
- target:
- name: database-credentials-json # Name for the secret to be created on the cluster
- creationPolicy: Owner
- # for json formatted secrets: each key in the json will be used as the secret key in the SECRET k8s target object
- dataFrom:
- - extract:
- key: database-credentials # Full path of the secret on Akeyless
|