* What stacktrace or error message from your provider did you see?
Is this the stacktrace?
Serverless: Generated requirements from /wrk/requirements.txt in /wrk/.serverless/requirements.txt...
Serverless: Installing requirements from /root/.cache/serverless-python-requirements/b9e3ef1c8852be858b29175d517828ebd482743e740dff9398ba19d5f04bbe7f_slspyc/requirements.txt ...
Serverless: Using download cache directory /root/.cache/serverless-python-requirements/downloadCacheslspyc
Serverless: Running ...
Serverless: Packaging service...
Serverless: Excluding development dependencies...
Serverless: Injecting required Python packages to package...
Serverless: Uploading CloudFormation file to S3...
Serverless: Uploading artifacts...
Serverless: Uploading service slack-otrs.zip file to S3 (13.89 MB)...
Serverless: Validating template...
Serverless: Updating Stack...
Serverless: Checking Stack update progress...
..........................
Serverless: Stack update finished...
Service Information
service: slack-otrs
stage: dev
region: eu-west-1
stack: slack-otrs-dev
resources: 36
api keys:
None
endpoints:
ANY - https://.execute-api.eu-west-1.amazonaws.com/dev/forward
ANY - https://.execute-api.eu-west-1.amazonaws.com/dev/welcome_message
functions:
forward: slack-otrs-dev-forward
send-ticket: slack-otrs-dev-send-ticket
welcome-message: slack-otrs-dev-welcome-message
layers:
None
Serverless: Removing old service artifacts from S3...
Serverless: Run the "serverless" command to setup monitoring, troubleshooting and testing.
## Additional Data
* ***Serverless Framework Version***: 1.61.3
* ***Stack Trace***: Is this the output of "make deploy"? If so, there are no errors/warnings.
* ***Provider Error messages***: no error
This is a (Bug Report/Question)
Description
I started using this and I'm not sure if the email notification endpoint is outdated or I'm just missing something in my configuration.
For bug reports:
custom: pythonRequirements: dockerizePip: false
provider: name: aws runtime: python3.7 stage: ${opt:stage, 'dev'}
functions: forward: handler: functions/forward/forward.lambda_handler environment: sqs_url: Ref: SlackOtrsQueue events:
http: path: /forward method: any private: false
send-ticket: handler: functions/send_ticket/send_ticket.main environment: aws_region_name: ${self:custom.lambda_env.aws_region_name} slack_channel_id: ${self:custom.lambda_env.slack_channel_id} slack_channel_name: ${self:custom.lambda_env.slack_channel_name} gcp_table_id: ${self:custom.lambda_env.gcp_table_id} gcp_dataset_id: ${self:custom.lambda_env.gcp_dataset_id} gcp_project_id: ${self:custom.lambda_env.gcp_project_id} ses_email_url: ${self:custom.lambda_env.ses_email_url} events:
welcome-message: handler: functions/welcome_message/welcome_message.welcome_message environment: aws_region_name: ${self:custom.lambda_env.aws_region_name} slack_channel_id: ${self:custom.lambda_env.slack_channel_id} slack_channel_name: ${self:custom.lambda_env.slack_channel_name} gcp_table_id: ${self:custom.lambda_env.gcp_table_id} gcp_dataset_id: ${self:custom.lambda_env.gcp_dataset_id} gcp_project_id: ${self:custom.lambda_env.gcp_project_id} ses_email_url: ${self:custom.lambda_env.ses_email_url} events:
resources: Resources: SlackOtrsQueue: Type: "AWS::SQS::Queue" Properties: QueueName: "slack-otrs-queue.fifo" FifoQueue: true ContentBasedDeduplication: true
plugins:
Serverless: Generated requirements from /wrk/requirements.txt in /wrk/.serverless/requirements.txt... Serverless: Installing requirements from /root/.cache/serverless-python-requirements/b9e3ef1c8852be858b29175d517828ebd482743e740dff9398ba19d5f04bbe7f_slspyc/requirements.txt ... Serverless: Using download cache directory /root/.cache/serverless-python-requirements/downloadCacheslspyc Serverless: Running ... Serverless: Packaging service... Serverless: Excluding development dependencies... Serverless: Injecting required Python packages to package... Serverless: Uploading CloudFormation file to S3... Serverless: Uploading artifacts... Serverless: Uploading service slack-otrs.zip file to S3 (13.89 MB)... Serverless: Validating template... Serverless: Updating Stack... Serverless: Checking Stack update progress... .......................... Serverless: Stack update finished... Service Information service: slack-otrs stage: dev region: eu-west-1 stack: slack-otrs-dev resources: 36 api keys: None endpoints: ANY - https://.execute-api.eu-west-1.amazonaws.com/dev/forward
ANY - https://.execute-api.eu-west-1.amazonaws.com/dev/welcome_message
functions:
forward: slack-otrs-dev-forward
send-ticket: slack-otrs-dev-send-ticket
welcome-message: slack-otrs-dev-welcome-message
layers:
None
Serverless: Removing old service artifacts from S3...
Serverless: Run the "serverless" command to setup monitoring, troubleshooting and testing.