UNPKG

@nestjs-aws/systems-manager

Version:

NestJS module for AWS Systems Manager (Parameter Store & Secrets Manager). Seamlessly integrate AWS SSM parameters and secrets into your NestJS applications with TypeScript support, automatic refresh, and hierarchical configuration management.

7 lines (6 loc) 678 B
import { SystemsManagerService } from './systems-manager.service'; import { SystemsManagerModule } from './systems-manager.module'; import { ModuleAsyncOptions, ModuleOptions, SystemsManagerParameters, SystemsManagerSecrets } from './interface'; import { AWS_PARAM_STORE_PROVIDER, AWS_SECRETS_MANAGER_PROVIDER } from './constants'; import { ParameterStoreFetcherService, SecretsManagerFetcherService } from './services'; export { AWS_PARAM_STORE_PROVIDER, AWS_SECRETS_MANAGER_PROVIDER, SystemsManagerService, SystemsManagerModule, SystemsManagerParameters, SystemsManagerSecrets, ModuleOptions, ModuleAsyncOptions, ParameterStoreFetcherService, SecretsManagerFetcherService, };