Update an mTLS certificate's hostname settings

Updates an mTLS certificate's hostname settings.

Script cloudflare Verified

by hugo697 ยท 11/16/2023

The script

Submitted by hugo697 Typescript (fetch-only)
Verified 383 days ago
1
type Cloudflare = {
2
  token: string;
3
  email: string;
4
  key: string;
5
};
6
/**
7
 * Update an mTLS certificate's hostname settings
8
 * Updates an mTLS certificate's hostname settings.
9
 */
10
export async function main(
11
  auth: Cloudflare,
12
  identifier: string,
13
  body: {
14
    settings: {
15
      china_network: boolean;
16
      client_certificate_forwarding: boolean;
17
      hostname: string;
18
    }[];
19
    [k: string]: unknown;
20
  }
21
) {
22
  const url = new URL(
23
    `https://api.cloudflare.com/client/v4/zones/${identifier}/access/certificates/settings`
24
  );
25

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