Files
infisical/backend/src/services/pki-sync/chef/chef-pki-sync-list-constants.ts
Carlos Monastyrski 3b35b22470 Add Chef PKI sync
2025-11-19 00:59:18 -03:00

11 lines
354 B
TypeScript

import { AppConnection } from "@app/services/app-connection/app-connection-enums";
import { PkiSync } from "@app/services/pki-sync/pki-sync-enums";
export const CHEF_PKI_SYNC_LIST_OPTION = {
name: "Chef" as const,
connection: AppConnection.Chef,
destination: PkiSync.Chef,
canImportCertificates: false,
canRemoveCertificates: true
} as const;