1
0
Fork 0
mirror of https://github.com/external-secrets/external-secrets.git synced 2024-12-15 17:51:01 +00:00
external-secrets/docs/snippets/vault-jenkins-credential-github-ssh-access-external-secret.yaml

34 lines
866 B
YAML
Raw Normal View History

{% raw %}
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: github-ssh-access
namespace: ci
spec:
refreshInterval: 1m
secretStoreRef:
name: vault-backend
kind: ClusterSecretStore
target:
name: github-ssh-access
template:
metadata:
labels:
"jenkins.io/credentials-type": "basicSSHUserPrivateKey"
annotations:
"jenkins.io/credentials-description": "github-ssh-access key"
data:
username: >-
{{ printf "{{ .username | toString }}" }}
privateKey: >-
{{ printf "{{ .privateKey | toString }}" }}
data:
- secretKey: username
remoteRef:
key: my-kv
property: github-ssh-access-username
- secretKey: privateKey
remoteRef:
key: my-kv
property: github-ssh-access-private-key
{% endraw %}