-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yaml
151 lines (138 loc) · 3.48 KB
/
template.yaml
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: 'wykop.pl lite client'
Globals:
Api:
Cors:
AllowMethods: "'GET,POST,PUT,OPTIONS'"
AllowHeaders: "'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,X-Session-Token,X-Read-To'"
AllowOrigin: "'*'"
Resources:
ApiGetItemsFunction:
Type: AWS::Serverless::Function
Properties:
Handler: api.items_handler
Runtime: ruby2.7
Timeout: 300
Events:
Request:
Type: Api
Properties:
Path: /items
Method: get
Policies:
- DynamoDBReadPolicy:
TableName: !Ref ItemsTable
- DynamoDBCrudPolicy:
TableName: !Ref SessionsTable
Environment:
Variables:
ITEMS_TABLE: !Ref ItemsTable
SESSIONS_TABLE: !Ref SessionsTable
ApiMarkAsReadFunction:
Type: AWS::Serverless::Function
Properties:
Handler: api.read_handler
Runtime: ruby2.7
Timeout: 300
Events:
Request:
Type: Api
Properties:
Path: /read
Method: put
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref SessionsTable
Environment:
Variables:
SESSIONS_TABLE: !Ref SessionsTable
FetcherFunction:
Type: AWS::Serverless::Function
Properties:
Handler: fetcher.handler
Runtime: ruby2.7
Timeout: 300
Policies:
- DynamoDBCrudPolicy:
TableName: !Ref ItemsTable
Environment:
Variables:
ITEMS_TABLE: !Ref ItemsTable
ItemsTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: 'date'
AttributeType: 'S'
- AttributeName: 'time_guid'
AttributeType: 'S'
KeySchema:
- AttributeName: 'date'
KeyType: 'HASH'
- AttributeName: 'time_guid'
KeyType: 'RANGE'
BillingMode: 'PAY_PER_REQUEST'
SessionsTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: 'token'
AttributeType: 'S'
KeySchema:
- AttributeName: 'token'
KeyType: 'HASH'
BillingMode: 'PAY_PER_REQUEST'
ScheduledRule:
Type: AWS::Events::Rule
Properties:
ScheduleExpression: rate(2 minutes)
State: ENABLED
Targets:
- Arn:
Fn::GetAtt:
- FetcherFunction
- Arn
Id: TargetFunctionV1
PermissionForEventsToInvokeLambda:
Type: AWS::Lambda::Permission
Properties:
FunctionName:
Ref: FetcherFunction
Action: lambda:InvokeFunction
Principal: events.amazonaws.com
SourceArn:
Fn::GetAtt:
- ScheduledRule
- Arn
Outputs:
ItemsTable:
Description: 'Items Dynamo DB table'
Value:
Fn::GetAtt:
- ItemsTable
- Arn
SessionsTable:
Description: 'Sessions Dynamo DB table'
Value:
Fn::GetAtt:
- SessionsTable
- Arn
FetcherFunction:
Value:
Fn::GetAtt:
- FetcherFunction
- Arn
ApiGetItemsFunction:
Value:
Fn::GetAtt:
- ApiGetItemsFunction
- Arn
ApiMarkAsReadFunction:
Value:
Fn::GetAtt:
- ApiMarkAsReadFunction
- Arn
ApiUrl:
Description: 'Gateway endpoint for JSON API'
Value: !Sub 'https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/'