| 123456789101112131415161718192021 |
- apiVersion: external-secrets.io/v1
- 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
|