services/daily-ci-reports/serverless.yml (38 lines of code) (raw):

# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # # Lambda configuration for daily CI report # Please don't forget to verify the email addressed at # https://us-west-2.console.aws.amazon.com/ses/home?region=us-west-2#verified-senders-email service: DailyCiReport plugins: - serverless-python-requirements provider: name: aws runtime: python3.6 region: us-west-2 stage: ${opt:stage} environment: ${file(environment.yml):${self:provider.stage}} iamRoleStatements: - Effect: "Allow" Action: - "ses:SendEmail" Resource: - ${self:provider.environment.EMAIL_SENDER_ARN} - ${self:provider.environment.EMAIL_RECEIVER_ARN} functions: DailyGithubReport: name: DailyReport-GitHub handler: report.lambda_handler_github_report reservedConcurrency: 1 timeout: 890 events: - schedule: cron(0 6 * * ? *) environment: REGION: ${opt:region, self:provider.region} DailyCiReport: name: DailyReport-CI handler: report.lambda_handler_ci_report reservedConcurrency: 1 timeout: 890 events: - schedule: cron(0 6 * * ? *) environment: REGION: ${opt:region, self:provider.region} custom: pythonRequirements: dockerizePip: true