Files
triggerdotdev--trigger.dev/apps/webapp/app/v3/environmentVariableRules.server.ts
Oskar Otwinowski 910011d44e feat(vercel): automatic version skew protection at connect + atomic deployments deprecation (#4741)
Connecting a Vercel project now writes
TRIGGER_AUTOMATIC_SKEW_VERSION_PROTECTION=1
(plain, create-if-absent only - an existing value, including "0", is
never
touched; presence is target-containment aware, branch-scoped records do
not
count, a truncated env listing skips the write). The onboarding wizard
no
longer offers automatic atomic deployments (default off); the settings
row is
labelled Deprecated and enabling it requires confirming a dialog that
points
to task version skew protection and the docs (TRI-13001).
2026-08-21 18:09:27 +02:00

52 lines
1.6 KiB
TypeScript

import { type EnvironmentVariable } from "./environmentVariables/repository";
import { SKEW_PROTECTION_ENV_VAR_KEY } from "./vercel/vercelProjectIntegrationSchema";
type VariableRule =
| { type: "exact"; key: string }
| { type: "prefix"; prefix: string }
| { type: "whitelist"; key: string };
const blacklistedVariables: VariableRule[] = [
{ type: "exact", key: "TRIGGER_SECRET_KEY" },
{ type: "exact", key: "TRIGGER_API_URL" },
];
const additionalExternalSyncReservedKeys = [
"TRIGGER_VERSION",
"TRIGGER_PREVIEW_BRANCH",
SKEW_PROTECTION_ENV_VAR_KEY,
];
export function isBlacklistedVariable(key: string): boolean {
const whitelisted = blacklistedVariables.find((bv) => bv.type === "whitelist" && bv.key === key);
if (whitelisted) {
return false;
}
const exact = blacklistedVariables.find((bv) => bv.type === "exact" && bv.key === key);
if (exact) {
return true;
}
const prefix = blacklistedVariables.find(
(bv) => bv.type === "prefix" && key.startsWith(bv.prefix)
);
if (prefix) {
return true;
}
return false;
}
// Keys that must never be synced from an external integration (e.g. Vercel). Superset of
// the repository blacklist so submitting a reserved key doesn't get the whole batch rejected.
export function isReservedForExternalSync(key: string): boolean {
return isBlacklistedVariable(key) || additionalExternalSyncReservedKeys.includes(key);
}
export function removeBlacklistedVariables(
variables: EnvironmentVariable[]
): EnvironmentVariable[] {
return variables.filter((v) => !isBlacklistedVariable(v.key));
}