mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
164e8776ec
Signed-off-by: Gustavo Carvalho <gustavo.carvalho@container-solutions.com>
22 lines
636 B
YAML
22 lines
636 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"
|
|
auth:
|
|
# VaultJwt authenticates with Vault using the JWT/OIDC auth mechanism
|
|
# https://www.vaultproject.io/docs/auth/jwt
|
|
jwt:
|
|
# Path where the JWT authentication backend is mounted
|
|
path: "jwt"
|
|
# JWT role configured in a Vault server, optional.
|
|
role: "vault-jwt-role"
|
|
secretRef:
|
|
name: "my-secret"
|
|
key: "jwt-token"
|