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

TL;DR: there's some counter intuitive things with this plugin. One is that it creates an alias with the same name as the stage. (i see the docs on why this...

I'm trying to configure `throttlingRateLimit` and `throttlingBurstLimit` for the API stage using the `aliasStage` setting but deploying just sets these values to the defaults (10,000 and 5,000). ``` yaml ......

In AWS API Gateway API keys are set per stage. They can be configured completely different, even with different usage plans per stage. After experimenting with the Serverless implementation and...

help wanted
feature

We are currently in the process of moving to serverless with AWS. We are using serverless-aws-alias to utilise AWS's stage logic rather than the one provided by Serverless Framework. So...

Here is what I've got in the serverless.yaml ``` # Dist list subscription for prod alerts AlertTopicSubscription: Type: AWS::SNS::Subscription Condition: CreateResourcesProdStage Properties: Endpoint: ${self:custom.alarms_emails.prod_dist_list1} Protocol: email TopicArn: ${self:provider.AlertTopic} ``` Getting...

Seems this plugin may be incompatible with https://github.com/ACloudGuru/serverless-plugin-aws-alerts ``` The CloudFormation template is invalid: Template format error: Unresolved resource dependencies [AwsAlertsAlarm, AwsAlertsInsufficientData, AwsAlertsOk] in the Resources block of the template...

bug
plugin-support

Since the plugin create deployment in the separate cloudformation stack I get an error on the following code in the serverless.yaml ``` Resources: MyServiceUsagePlan: Type: "AWS::ApiGateway::UsagePlan" DependsOn: ApiGatewayDeployment${sls:instanceId} # https://serverless.com/framework/docs/providers/aws/guide/variables/...

Really pulling my hair out with this, so I've gone back to basics and I have the following basic/minimal `serverless.yml` config: ``` service: mySimpleService plugins: - serverless-aws-alias provider: name: aws...

Attempting to deploy a previously packaged serverless build that makes use of the example under **Use with per alias resource** heading in the README results in the error - Template...

bug
blocked

I have a serverless.yml that looks like ``` service: myapp-${opt:stage, self:provider.stage} custom: serverless-offline: port: 3001 myStage: ${opt:stage, self:provider.stage} myEnvironment: ENV_VAR: DEV: "dev value" PROD: "prod value" output: file: ../controller/constants/application-aws.json #...