There are cases in which it is necessary to delete all log groups when upgrading to Serverless 1.6. This plugin can delete all log groups of the Lambda function described in serverless.yml
Run npm install
in your Serverless project.
$ npm install serverless-delete-loggroups
Add the plugin to your serverless.yml file
plugins:
- serverless-delete-loggroups
LogGroups are deleted as follow:
$ sls remove logs
- --stage or -s The stage in your service you want to delete.
- --region or -r The region in your stage that you want to delete.