mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-08 23:18:05 -05:00
11 lines
354 B
TypeScript
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;
|