serverless-aws-secrets
serverless-aws-secrets copied to clipboard
🛵 Serverless plugin that reads environment variables and replaces secrets using AWS Secrets Manager 🛵
Bumps the typescript-eslint group with 2 updates in the / directory: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) and [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser). Updates `@typescript-eslint/eslint-plugin` from 6.18.1 to 7.9.0 Release notes Sourced from @typescript-eslint/eslint-plugin's releases. v7.9.0 7.9.0 (2024-05-13) 🚀...
Bumps [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) from 18.4.4 to 19.2.2. Release notes Sourced from @commitlint/config-conventional's releases. v19.2.2 19.2.2 (2024-04-14) Bug Fixes fix(is-ignored): ignore "amend!" commits by @chalkygames123 in conventional-changelog/commitlint#4024 Chore Update circleci ci-setup.md by...
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.2.2 to 5.4.5. Release notes Sourced from typescript's releases. TypeScript 5.4.5 For release notes, check out the release announcement. For the complete list of fixed issues, check...
- serverless.yml ``` service: hellow frameworkVersion: '3' custom: serverless-aws-secrets: secretId: test provider: name: aws runtime: nodejs18.x region: ap-northeast-2 environment: TEST: secret:TEST functions: test: handler: index.handler plugins: - serverless-aws-secrets ``` typing...
Bumps [nock](https://github.com/nock/nock) from 13.4.0 to 13.5.4. Release notes Sourced from nock's releases. v13.5.4 13.5.4 (2024-02-26) Bug Fixes call fs.createReadStream lazily (#2357) (ba9fc42) v13.5.3 13.5.3 (2024-02-17) Bug Fixes support literal query...
Bumps [prettier](https://github.com/prettier/prettier) from 3.1.1 to 3.2.5. Release notes Sourced from prettier's releases. 3.2.5 🔗 Changelog 3.2.4 Fix .eslintrc.json format #15947 🔗 Changelog 3.2.3 Format tsconfig.json file with jsonc parser #15927...
The plugin replaces the environment variables defined under `provide.environment` key in `serverless.yml`. Rather than restricting to this, replace the ones that can be defined like: ``` functions: function1: handler: index.handler...
At the moment, we support only 2 serverless lifecycle hooks: - `before:package:initialize` - `offline:start:init` See whether we can accept a list of lifecycle hooks (besides the 2 above) from the...
Since Node.js v18 shall reach its end-of-life on 18 Oct 2023, update to Node.js v20 after this.
Rather than exposing the secret during the build stage (`sls deploy`), figure out a way whereby the secret shall be exposed only during runtime. Some possible ways: 1. Replace all...