mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
de491a2790
* Add Conjur provider Signed-off-by: David Hisel <David.Hisel@CyberArk.com> * fix: lint Signed-off-by: Moritz Johner <beller.moritz@googlemail.com> * fix: unit tests Signed-off-by: Moritz Johner <beller.moritz@googlemail.com> --------- Signed-off-by: David Hisel <David.Hisel@CyberArk.com> Signed-off-by: David Hisel <132942678+davidh-cyberark@users.noreply.github.com> Signed-off-by: Moritz Johner <beller.moritz@googlemail.com> Co-authored-by: Moritz Johner <beller.moritz@googlemail.com>
21 lines
566 B
YAML
21 lines
566 B
YAML
apiVersion: external-secrets.io/v1beta1
|
|
kind: SecretStore
|
|
metadata:
|
|
name: conjur
|
|
spec:
|
|
provider:
|
|
conjur:
|
|
# Service URL
|
|
url: https://myapi.conjur.org
|
|
# [OPTIONAL] base64 encoded string of certificate
|
|
caBundle: OPTIONALxFIELDxxxBase64xCertxString==
|
|
auth:
|
|
apikey:
|
|
# conjur account
|
|
account: conjur
|
|
userRef: # Get this from K8S secret
|
|
name: conjur-creds
|
|
key: hostid
|
|
apiKeyRef: # Get this from K8S secret
|
|
name: conjur-creds
|
|
key: apikey
|