Introduce managed secrets owned by GitOps that can be defined once and
pushed to any combination of projects/groups across connections. Values
are stored in OS keychain, secrets appear on targets as GITOPS_{key}.
13 lines
674 B
TypeScript
13 lines
674 B
TypeScript
export { AdminHandler } from './admin.handler.ts';
|
|
export { ConnectionsHandler } from './connections.handler.ts';
|
|
export { ProjectsHandler } from './projects.handler.ts';
|
|
export { GroupsHandler } from './groups.handler.ts';
|
|
export { SecretsHandler } from './secrets.handler.ts';
|
|
export { PipelinesHandler } from './pipelines.handler.ts';
|
|
export { LogsHandler } from './logs.handler.ts';
|
|
export { WebhookHandler } from './webhook.handler.ts';
|
|
export { ActionsHandler } from './actions.handler.ts';
|
|
export { ActionLogHandler } from './actionlog.handler.ts';
|
|
export { SyncHandler } from './sync.handler.ts';
|
|
export { ManagedSecretsHandler } from './managedsecrets.handler.ts';
|