-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
60 lines (53 loc) · 1.31 KB
/
serverless.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
service: python-config
useDotenv: false
provider:
name: aws
region: ${self:custom.region}
runtime: python3.8
stage: ${self:custom.stage}
environment:
STAGE: ${self:custom.stage}
plugins:
- serverless-python-requirements
custom:
region: ${opt:region, 'us-east-1'}
stage: ${opt:stage, 'dev'}
pythonRequirements:
dockerizePip: non-linux
package:
exclude:
- test/**
- node_modules/**
- package.json
- package-lock.json
- .venv/**
- .editorconfig
- README.md
functions:
foo:
role: ExecutionRole
handler: src/handler.foo
resources:
Resources:
ExecutionRole:
Type: AWS::IAM::Role
Properties:
RoleName: ${self:service}-${self:custom.stage}-execution-role
AssumeRolePolicyDocument:
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action: sts:AssumeRole
Policies:
- PolicyName: ${self:service}-${self:custom.stage}-execution-policy
PolicyDocument:
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource:
- "*"