-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserverless.yml
92 lines (89 loc) · 2.4 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
service: lambda-function-desafio-crud-user
frameworkVersion: "3"
plugins:
- serverless-offline
- serverless-layers
custom:
secrets: ${file(env.json)}
tableName: "hitbel_sessions"
serverless-layers:
functions:
- register
- login
- auth
- sessions
dependenciesPath: ./requirements.txt
provider:
name: aws
runtime: python3.8
deploymentBucket: "hitbel"
environment:
JWT_SECRET: ${self:custom.secrets.JWT_SECRET}
AWS_ID: ${self:custom.secrets.AWS_ID}
DB_DATABASE: ${self:custom.secrets.DB_DATABASE}
DB_HOST: ${self:custom.secrets.DB_HOST}
DB_USERNAME: ${self:custom.secrets.DB_USERNAME}
DB_PASSWORD: ${self:custom.secrets.DB_PASSWORD}
iamRoleStatements:
- Effect: "Allow"
Action:
- "dynamodb:GetItem"
- "dynamodb:PutItem"
- "dynamodb:Scan"
Resource: "arn:aws:dynamodb:us-east-1:${self:custom.secrets.AWS_ID}:table/${self:custom.tableName}"
functions:
auth:
handler: functions/authorizer.handler
login:
handler: functions/login.handler
events:
- http:
path: /login
method: post
cors: true
register:
handler: functions/register.handler
events:
- http:
path: /register
method: post
cors: true
sessions:
handler: functions/sessions.handler
events:
- http:
path: /sessions
method: get
authorizer:
name: auth
identitySource: method.request.header.Authorization
resultTtlInSeconds: 3600
cors: true
resources:
Resources:
GatewayResponseDefault4XX:
Type: "AWS::ApiGateway::GatewayResponse"
Properties:
ResponseParameters:
gatewayresponse.header.Access-Control-Allow-Origin: "'*'"
gatewayresponse.header.Access-Control-Allow-Headers: "'*'"
ResponseType: DEFAULT_4XX
RestApiId:
Ref: "ApiGatewayRestApi"
usersTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: ${self:custom.tableName}
AttributeDefinitions:
- AttributeName: id
AttributeType: S
- AttributeName: token
AttributeType: S
KeySchema:
- AttributeName: id
KeyType: HASH
- AttributeName: token
KeyType: RANGE
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1