serverless-aws-alias
serverless-aws-alias copied to clipboard
Alias support for Serverless 1.x
The serverless [`provider.request()` api has changed](https://github.com/serverless/serverless/blob/4f64e560b9157dc8700328686a778ebd2a78ba9e/lib/plugins/aws/provider.js#L1332-L1340) since this plugin was written. This was resulting in `WARNING: Inappropriate call of provider.request()` output during deploys. While it is possible to pass `options.region`,...
This is an inspiration from the fix that @Enase provided long back and not merged. Tested in my local setup and works. Fixes #186 and #200
When deploying masterAlias with command ```bash SLS_DEBUG=* sls deploy --verbose --masterAlias ``` it fails with the following error: ```bash ServerlessError: Expected params.Tags[1].Value to be a string at /Users/***/WebstormProjects/***/node_modules/serverless/lib/plugins/aws/provider/awsProvider.js:327:27 at runMicrotasks...
Like down below ? ``` functions: user: name: myFunc alias: dev handler: processor.handler ``` or ``` functions: user: name: myFunc:dev handler: processor.handler ``` The second deploy fail
Bumps [ini](https://github.com/isaacs/ini) from 1.3.4 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...
I've been using the `serverless-aws-alias plugin` for some time now. It had its ups and downs but now I faced a problem that I cannot overcome. My serverless project grew...
I'm having trouble getting this plugin to work alongside the serverless-domain-manager plugin. I saw you added support for serverless-domain-manager in 1.7.0, however I believe my usecase isn't handled. The error...
TypeError : Cannot read property "Properties" of undefined in \lib\stackops\lambdaRole.js:38:11 when role attribute is not included as root property in serverless.yml file. How to reproduce: Include serverless-aws-alias plugin and leave...
Bumps [decompress](https://github.com/kevva/decompress) from 4.2.0 to 4.2.1. Release notes Sourced from decompress's releases. v4.2.1 Prevent directory traversal (#73) 967146e https://github.com/kevva/decompress/compare/v4.2.0...v4.2.1 Commits 84a8c10 4.2.1 fafff47 Meta tweaks 967146e Prevent directory traversal (#73)...
### Problem Statement: I want my API to point a specific version of lambda when deploying with serverless command. When I deploy with stage name **v1** and alias name **dev**...