mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
22 lines
566 B
YAML
22 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
|