Audit logging, secrets manager completion, sns and sqs wrapping up

This commit is contained in:
2023-03-22 03:00:53 -04:00
parent 07d3841cd7
commit ee0babc2e3
30 changed files with 845 additions and 23 deletions

View File

@@ -4,4 +4,5 @@ export interface CommonConfig {
DB_DATABASE: string;
DB_LOGGING?: boolean;
DB_SYNCHRONIZE?: boolean;
HOST: string;
}

View File

@@ -3,7 +3,9 @@ import { CommonConfig } from "./common-config.interface";
export default (): CommonConfig => ({
AWS_ACCOUNT_ID: '123456789012',
AWS_REGION: 'us-east-1',
DB_DATABASE: ':memory:', // 'local-aws.sqlite', // :memory:
// DB_DATABASE: ':memory:',
DB_DATABASE: 'local-aws.sqlite',
DB_LOGGING: true,
DB_SYNCHRONIZE: true,
HOST: 'http://localhost:8081',
});