1.0.1 • Published 3 years ago

@bordeux/node-aws-secrets-loader v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

node-aws-secrets-loader

Tool to automatically load AWS secret to environment variable

Docs Github Pages

Example (es module)

import { awsSecretLoader } from '@bordeux/node-aws-secrets-loader'
await awsSecretLoader({ SecretId: "someSecret" })

Example (commonjs)

const { awsSecretLoader } = require('@bordeux/node-aws-secrets-loader');
await awsSecretLoader({ SecretId: "someSecret" })