Tracked
- NPM Downloads Last Month
- 82
- Issues
- 0
- Stars
- 0
- Forks
- 0
- Watchers
- 0
yarn add --dev serverless-plugin-vault-v2
or
npm install --save-dev serverless-plugin-vault-v2
The configuration to initialize:
custom:
vault:
token: "<TOKEN_OF_USER>"
url: <SERVER_URL>"
paths: ["PATH_STORE1", ...]
ssl_check: boolean
To add the kms integration, just put the Kms object with your vault configuration:
custom:
vault:
...
kms:
keyId: <"KMS_ID">
To activate the Vault Service use the flag –vault after serverless command deploy and with serverless offline the command offline start. Examples:
serverless deploy --vault
and
serverless offline start --vault
MIT