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

I want to use this plugin to implement multiple versions per stage, so when deploying a new version, I will deploy new alias such as v1.0.0. I try to deploy...

We're trying to deploy a serverless stack, which has an RDS resource, and has auto scaling via CloudWatch and `SNS::Topic`. I understand there's some special cases around lambda SNS topics,...

If you add a S3 event to your service the event will trigger the `$LATEST` version instead of the deployed alias. Expectation: The trigger should call func:`alias`.

bug
feature

I'm trying to use AWS Conditions in order to create conditional Resources. Conditions generally work like this in your `serverless.yaml`: ``` ... resources: Conditions: IsProdCondition: Fn::Equals: [ '${self:custom.stage}', 'prod' ]...

It would be extremely helpful for the output from the deploy command to show the link for the alias endpoint instead of the stage. For Example when using the command...

enhancement
help wanted

AWS now supports sub stages for APIG stages, that let you do canary deployments easily. Additionally, the canary stage can "take over" the requests incrementally until it is fully serving...

feature

I'm having an issue where I'm attempting to use an ARN for my authorizer (all of my services share a common authorizer) but the plugin is inserting `${stageVariables.SERVERLESS_ALIAS}` where it...

bug

Hi, I was trying to use an shared API with alias plugin, during the deployment there are no errors, the problem is that it does not create the stage variables...

Would be wonderful to see support for alias promotion - http://docs.aws.amazon.com/lambda/latest/dg/API_UpdateAlias.html

feature

Hi, I'm trying to create an additional AWS::Lambda::Permission for invocation by SNS topics: ```yaml resources: SNSPermission: Type: AWS::Lambda::Permission Properties: FunctionName: Ref: Route53Registration Action: lambda:InvokeFunction Principal: sns.amazonaws.com SourceArn: Fn::Join: - ':'...