2.0.49 • Published 2 years ago

typescript-aws-kms-helper v2.0.49

Weekly downloads
55
License
MIT
Repository
github
Last release
2 years ago

Install

npm install typescript-aws-kms-helper@latest

Usage

Default - running in Lambda in your own account

const logger = new Logger(LogLevel.Trace);

const helper = new KMSHelper(logger);

const response = await helper.DecryptAsync('encryptedValue');

Running in separate account or not in Lambda

import * as KMS from '@aws-sdk/client-kms';

const logger = new Logger(LogLevel.Trace);

const options: KMS.KMSClientConfig = {
  accessKeyId: '{access_key}',
  secretAccessKey: '{secret_key}',
  region: 'us-east-1',
};

const repository = new KMS.KMS(options);

const helper = new KMSHelper(logger, repository);

const response = await helper.DecryptAsync('encryptedValue');

Notes

If no options are supplied, will default to us-east-1 as the region

Development

Clone the latest and run

npm run prep

to install packages and prep the git hooks

2.0.49

2 years ago

2.0.48

2 years ago

2.0.47

2 years ago

2.0.46

3 years ago

2.0.45

3 years ago

2.0.44

3 years ago

2.0.42

3 years ago

2.0.43

3 years ago

2.0.32

3 years ago

2.0.41

3 years ago

1.0.196

3 years ago

2.0.18

3 years ago

2.0.17

3 years ago

2.0.2

3 years ago

1.0.174

3 years ago

1.0.161

3 years ago

1.0.134

4 years ago

1.0.113

4 years ago

1.0.99

4 years ago

1.0.84

4 years ago

1.0.68

4 years ago

1.0.46

4 years ago

1.0.44

4 years ago

1.0.31

4 years ago

1.0.30

4 years ago

1.0.19

4 years ago

1.0.17

4 years ago

1.0.9

4 years ago

1.0.22

4 years ago

1.0.11

4 years ago

1.0.20

4 years ago

1.0.12

4 years ago

1.0.5

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago