mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
39c8a49bfb
* fix typo in the full-pushsecret.yaml * change the array reference of the remoteKey from the full-pushsecret.yaml to a map reference
18 lines
674 B
YAML
18 lines
674 B
YAML
apiVersion: external-secrets.io/v1alpha1
|
|
kind: PushSecret
|
|
metadata:
|
|
name: pushsecret-example # Customisable
|
|
namespace: default # Same of the SecretStores
|
|
spec:
|
|
refreshInterval: 10s # Refresh interval for which push secret will reconcile
|
|
secretStoreRefs: # A list of secret stores to push secrets to
|
|
- name: aws-parameterstore
|
|
kind: SecretStore
|
|
selector:
|
|
secret:
|
|
name: pokedex-credentials # Source Kubernetes secret to be pushed
|
|
data:
|
|
- match:
|
|
secretKey: best-pokemon # Source Kubernetes secret key to be pushed
|
|
remoteRef:
|
|
remoteKey: my-first-parameter # Remote reference (where the secret is going to be pushed)
|