import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
await latitudesh.sshKeys.delete({
sshKeyId: "ssh_KXgRdRa3Ov9k5",
});
}
run();{
"meta": {}
}Allows you remove SSH Keys in a project. Remove a SSH Key from the project won’t revoke the SSH Keys access for previously deploy and reinstall actions.
import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
await latitudesh.sshKeys.delete({
sshKeyId: "ssh_KXgRdRa3Ov9k5",
});
}
run();{
"meta": {}
}Was this page helpful?