type Cloudflare = {
token: string;
email: string;
key: string;
};
/**
* Create IPsec tunnels
* Creates new IPsec tunnels associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes.
*/
export async function main(
auth: Cloudflare,
account_identifier: string,
body: {
cloudflare_endpoint: string;
customer_endpoint?: string;
description?: string;
interface_address: string;
name: string;
psk?: string;
replay_protection?: boolean;
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.cloudflare.com/client/v4/accounts/${account_identifier}/magic/ipsec_tunnels`
);
const response = await fetch(url, {
method: "POST",
headers: {
"X-AUTH-EMAIL": auth.email,
"X-AUTH-KEY": auth.key,
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 310 days ago
type Cloudflare = {
token: string;
email: string;
key: string;
};
/**
* Create IPsec tunnels
* Creates new IPsec tunnels associated with an account. Use `?validate_only=true` as an optional query parameter to only run validation without persisting changes.
*/
export async function main(
auth: Cloudflare,
account_identifier: string,
body: {
cloudflare_endpoint: string;
customer_endpoint?: string;
description?: string;
interface_address: string;
name: string;
psk?: string;
replay_protection?: boolean;
[k: string]: unknown;
}
) {
const url = new URL(
`https://api.cloudflare.com/client/v4/accounts/${account_identifier}/magic/ipsec_tunnels`
);
const response = await fetch(url, {
method: "POST",
headers: {
"X-AUTH-EMAIL": auth.email,
"X-AUTH-KEY": auth.key,
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 847 days ago