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>
25 lines
602 B
YAML
25 lines
602 B
YAML
{% raw %}
|
|
apiVersion: external-secrets.io/v1beta1
|
|
kind: ExternalSecret
|
|
metadata:
|
|
name: template
|
|
spec:
|
|
# ...
|
|
target:
|
|
template:
|
|
engineVersion: v2
|
|
data:
|
|
# .myjwk is a json-encoded JWK string.
|
|
#
|
|
# this template will produce for jwk_pub a PEM encoded public key:
|
|
# -----BEGIN PUBLIC KEY-----
|
|
# MIIBI...
|
|
# ...
|
|
# ...AQAB
|
|
# -----END PUBLIC KEY-----
|
|
jwk_pub: "{{ .myjwk | jwkPublicKeyPem }}"
|
|
# private key is a pem-encoded PKCS#8 private key
|
|
jwk_priv: "{{ .myjwk | jwkPrivateKeyPem }}"
|
|
|
|
|
|
{% endraw %}
|