mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-07 22:53:55 -05:00
11 lines
450 B
TypeScript
11 lines
450 B
TypeScript
import { AppConnection } from "@app/services/app-connection/app-connection-enums";
|
|
import { SecretSync } from "@app/services/secret-sync/secret-sync-enums";
|
|
import { TSecretSyncListItem } from "@app/services/secret-sync/secret-sync-types";
|
|
|
|
export const OCTOPUS_DEPLOY_SYNC_LIST_OPTION: TSecretSyncListItem = {
|
|
name: "Octopus Deploy",
|
|
destination: SecretSync.OctopusDeploy,
|
|
connection: AppConnection.OctopusDeploy,
|
|
canImportSecrets: false
|
|
};
|