UNPKG

@mbc-cqrs-serverless/cli

Version:

a CLI to get started with MBC CQRS serverless framework

49 lines (39 loc) 773 B
import { SystemLogLevel, ApplicationLogLevel } from 'aws-cdk-lib/aws-lambda' import { Config } from '../type' const config: Config = { env: 'stg', appName: '', domain: { http: '', appsync: '', }, userPoolId: '', vpc: { id: '', subnetIds: [], securityGroupIds: [], }, rds: { accountSsmKey: '', endpoint: '', dbName: '', }, logLevel: { lambdaSystem: SystemLogLevel.DEBUG, lambdaApplication: ApplicationLogLevel.TRACE, level: 'info', }, frontBaseUrl: '', fromEmailAddress: '', // wafArn: '', // ecs: { // maxInstances: 1, // minInstances: 1, // cpu: 512, // memory: 1024, // cpuThreshold: 70, // scaleStep: 1, // autoRollback: true, // }, } export default config