mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
31cecaa62b
* feat: adding support for mTLS to the Vault provider Signed-off-by: Rodrigo Fior Kuntzer <rodrigo@miro.com>
25 lines
565 B
YAML
25 lines
565 B
YAML
apiVersion: external-secrets.io/v1beta1
|
|
kind: SecretStore
|
|
metadata:
|
|
name: vault-backend
|
|
namespace: example
|
|
spec:
|
|
provider:
|
|
vault:
|
|
server: "https://vault.acme.org"
|
|
path: "secret"
|
|
version: "v2"
|
|
|
|
# client TLS related configuration
|
|
caBundle: "..."
|
|
tls:
|
|
clientCert:
|
|
name: "my-cert-secret"
|
|
key: "tls.crt"
|
|
secretRef:
|
|
name: "my-cert-secret"
|
|
key: "tls.key"
|
|
|
|
# the authentication methods are not really related to the client TLS configuration
|
|
auth:
|
|
...
|