Browse Source

Fix keys for secretRef in CRD ClusterSecretStore

While testing I have found that the documentation was referencing to wrong key names:

`provider.aws.auth.secretRef.accessKeyIDSecretRef`
`provider.aws.auth.secretRef.secretAccessKeySecretRef`
Alberto Llamas 4 years ago
parent
commit
3b5ea401c9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      docs/snippets/full-cluster-secret-store.yaml

+ 2 - 2
docs/snippets/full-cluster-secret-store.yaml

@@ -26,10 +26,10 @@ spec:
       auth:
         # Getting the accessKeyID and secretAccessKey from an already created Kubernetes Secret
         secretRef:
-          accessKeyID:
+          accessKeyIDSecretRef:
             name: awssm-secret
             key: access-key
-          secretAccessKey:
+          secretAccessKeySecretRef:
             name: awssm-secret
             key: secret-access-key
         # IAM roles for service accounts