Browse Source

Highlight that `property` field must be set for DSV secret (#2511)

Michael Sauter 2 years ago
parent
commit
644d911caa
1 changed files with 3 additions and 0 deletions
  1. 3 0
      docs/provider/delinea.md

+ 3 - 0
docs/provider/delinea.md

@@ -39,6 +39,8 @@ If required, the URL template (`urlTemplate`) can be customized as well.
 
 Secrets can be referenced by path. Getting a specific version of a secret is not yet supported.
 
+Note that because all DSV secrets are JSON objects, you must specify `remoteRef.property`. You can access nested values or arrays using [gjson syntax](https://github.com/tidwall/gjson/blob/master/SYNTAX.md).
+
 ```yaml
 apiVersion: external-secrets.io/v1beta1
 kind: ExternalSecret
@@ -53,4 +55,5 @@ spec:
       - secretKey: <KEY_IN_KUBE_SECRET>
         remoteRef:
           key: <SECRET_PATH>
+          property: <JSON_PROPERTY>
 ```