Skip to content

Commit 1582c71

Browse files
committed
fix: add --no-password --insecure flags to step crypto key format command for unencrypted JWKS output
1 parent 8c5c907 commit 1582c71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/langsmith/llm-auth-proxy-self-hosted.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Skip this step for LangSmith SaaS. JWT signing is already configured.
6262
TMPDIR_KEYS="$(mktemp -d)"
6363
step crypto keypair "$TMPDIR_KEYS/pub.pem" "$TMPDIR_KEYS/priv.pem" \
6464
--kty OKP --crv Ed25519 --no-password --insecure
65-
PRIV_JWK=$(step crypto key format --jwk < "$TMPDIR_KEYS/priv.pem")
65+
PRIV_JWK=$(step crypto key format --jwk --no-password --insecure < "$TMPDIR_KEYS/priv.pem")
6666
SIGNING_JWKS=$(echo "$PRIV_JWK" | jq -c '{keys: [. + {use: "sig", alg: "EdDSA"}]}')
6767
echo "$SIGNING_JWKS"
6868
```

0 commit comments

Comments
 (0)