0

Add a JWT Issuer

by
Published Oct 17, 2025

Registers a JWT Issuer with the CockroachDB Cloud to allow verifying JWTs during API authentication Can be used by the following roles assigned at the organization scope: - ORG_ADMIN

Script cockroachdb Verified

The script

Submitted by hugo697 Bun
Verified 235 days ago
1
//native
2
type Cockroachdb = {
3
  token: string;
4
};
5
/**
6
 * Add a JWT Issuer
7
 * Registers a JWT Issuer with the CockroachDB Cloud to allow verifying JWTs during API authentication
8

9
Can be used by the following roles assigned at the organization scope:
10
- ORG_ADMIN
11

12
 */
13
export async function main(
14
  auth: Cockroachdb,
15
  body: {
16
    audience: string;
17
    claim?: string;
18
    identity_map?: { cc_identity: string; token_identity: string }[];
19
    issuer_url: string;
20
    jwks?: string;
21
  },
22
) {
23
  const url = new URL(`https://cockroachlabs.cloud/api/v1/jwt-issuers`);
24

25
  const response = await fetch(url, {
26
    method: "POST",
27
    headers: {
28
      "Content-Type": "application/json",
29
      Authorization: "Bearer " + auth.token,
30
    },
31
    body: JSON.stringify(body),
32
  });
33
  if (!response.ok) {
34
    const text = await response.text();
35
    throw new Error(`${response.status} ${text}`);
36
  }
37
  return await response.json();
38
}
39