serverless-aws-alias icon indicating copy to clipboard operation
serverless-aws-alias copied to clipboard

Alias support for Serverless 1.x

Results 104 serverless-aws-alias issues
Sort by recently updated
recently updated
newest added
trafficstars

## Expected behaviour: serverless.yaml ``` functions: mainskill: handler: index.handler events: - alexaSkill: appId: amzn1.ask.skill. https://serverless.com/framework/docs/providers/aws/guide/variables#current-variable-sources ``` deployed with: ``` serverless deploy --stage main --alias PROD1 -v ``` To result in...

We have a particularly large serverless package (~15 functions) and when we try to remove an alias on it, we get the error: `'templateBody' failed to satisfy constraint: Member must...

enhancement
help wanted

iOT Rules can be used to trigger events. iOT Rule events deployed in an aliased deployment should trigger the aliased functions.

serverless 1.26.1. serverless-alias 1.7.0 Recently I've been running into the same error message during deploy: ``` $ serverless deploy --stage dev --alias my-alias --verbose ... Error -------------------------------------------------- Unable to retrieve...

Hello, It appears that if you create a new alias it will always publish a new version of the lambda function (with the updated environment variable SERVERLESS_ALIAS pointing to new...

As far as I can tell from the docs, there's no way to specify the alias name in the serverless definition itself (please correct me if I'm wrong). This seems...

For example, this is what I want to do: `folder1\serverless.yml` ``` provider: apiGateway: restApiId: xxxxxx functions: func1: events: - http: path: /test/func1 method: get ``` `folder2\serverless.yml` ``` provider: apiGateway: restApiId:...

Attempting to deploy a project with a subnet resource to the new alias, I receive a such error: `Resource is already deployed in another alias with a different configuration. Either...

Currently the `CloudWatchLog` event is not being assigned to the alias of the function, but is being appended the the `unqualified` function always. This event type is defined here: https://serverless.com/framework/docs/providers/aws/events/cloudwatch-log/...

When `provider.versionFunctions` is set to false in the serverless.yml some nulls end up in the `cloudformation-template-create-alias-stack.json` ```json "DependsOn": [ null, null ] ``` which results in the following error in...

enhancement