-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.yaml
279 lines (277 loc) · 10.3 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: >
Echelon-Backend
SAM Template for Echelon-Backend
# More info about Globals: https://github.com/awslabs/serverless-application-model/blob/master/docs/globals.rst
Globals:
Function:
Timeout: 3
Resources:
GameLiftServerInstanceRole:
Type: AWS::IAM::Role
Properties:
ManagedPolicyArns:
- "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
-
Effect: "Allow"
Principal:
Service:
- "gamelift.amazonaws.com"
Action:
- "sts:AssumeRole"
APITestingRole:
Type: AWS::IAM::Role
Properties:
ManagedPolicyArns:
- "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
-
Effect: "Allow"
Principal:
Service:
- "lambda.amazonaws.com"
Action:
- "sts:AssumeRole"
Policies:
-
PolicyName: "APIGameLiftTesting"
PolicyDocument:
Version: '2012-10-17'
Statement:
-
Sid: GameLiftFullAccess
Effect: Allow
Action: "gamelift:*"
Resource: "*"
APIMatchmakingRole:
Type: AWS::IAM::Role
Properties:
ManagedPolicyArns:
- "arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
-
Effect: "Allow"
Principal:
Service:
- "lambda.amazonaws.com"
Action:
- "sts:AssumeRole"
Policies:
-
PolicyName: "APIGameLiftMatchmaking"
PolicyDocument:
Version: '2012-10-17'
Statement:
-
Sid: GameLiftFullAccess
Effect: Allow
Action:
- gamelift:StartMatchmaking
- gamelift:StopMatchmaking
- gamelift:DescribeMatchMaking
- gamelift:AcceptMatch
Resource: "*"
EchelonBackendApi:
Type: AWS::Serverless::Api
Properties:
StageName: Prod
Cors: "'*'"
Auth:
DefaultAuthorizer: EchelonCognitoAuthorizer
Authorizers:
EchelonCognitoAuthorizer:
UserPoolArn: "arn:aws:cognito-idp:us-east-1:208447551786:userpool/us-east-1_IwgYhHBvJ"
# While we define the API Itself, the Resources Are Still Implicit
# ServerlessRestApi is no longer an implicit API created out of Events key under Serverless::Function
# Find out more about other implicit resources you can reference within SAM
# https://github.com/awslabs/serverless-application-model/blob/master/docs/internals/generated_resources.rst#api
AuthenticationFunction:
Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
Properties:
CodeUri: API/authentication/
Handler: app.lambdaHandler
Runtime: nodejs10.x
Timeout: 30
Events:
Authentication:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /auth/login
Method: post
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: NONE
CreateUser:
Type: Api
Properties:
Path: /auth/user
Method: post
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: EchelonCognitoAuthorizer
MatchmakingFunction:
Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
Properties:
CodeUri: API/matchmaking/
Handler: app.lambdaHandler
Runtime: nodejs10.x
Role: !GetAtt APITestingRole.Arn
Events:
StartMatchmaking:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /matchmaking/ticket/
Method: post
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: EchelonCognitoAuthorizer
DescribeMatchmaking:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /matchmaking/status/
Method: post
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: EchelonCognitoAuthorizer
AcceptMatch:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /matchmaking/match/
Method: post
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: EchelonCognitoAuthorizer
StopMatchmaking:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /matchmaking/ticket/
Method: delete
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: EchelonCognitoAuthorizer
ProfileFunction:
Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
Properties:
CodeUri: API/profile/
Handler: app.lambdaHandler
Runtime: nodejs10.x
Events:
GetProfile:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /profile/
Method: get
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: EchelonCognitoAuthorizer
GetCustomization:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /profile/customization/
Method: get
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: EchelonCognitoAuthorizer
SetCustomization:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /profile/customization/
Method: put
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: EchelonCognitoAuthorizer
TestingFunction:
Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
Properties:
CodeUri: API/testing/
Handler: app.lambdaHandler
Runtime: nodejs10.x
Role: !GetAtt APITestingRole.Arn
Events:
TestGameSession:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /test/game/session
Method: post
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: EchelonCognitoAuthorizer
TestPlayerSession:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /test/player/session
Method: post
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: EchelonCognitoAuthorizer
TestQueueSession:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /test/gamequeue/session
Method: post
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: EchelonCognitoAuthorizer
TestQueueSessionStatus:
Type: Api # More info about API Event Source: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#api
Properties:
Path: /test/gamequeue/session/status
Method: post
RestApiId: !Ref EchelonBackendApi
Auth:
Authorizer: EchelonCognitoAuthorizer
LoggingFunction:
Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
Properties:
CodeUri: GameLift/logging/
Handler: app.lambdaHandler
Runtime: nodejs10.x
Events:
LogEvent:
Type: SNS
Properties:
Topic: !Ref MatchmakingTopic
MatchmakingTopic:
Type: AWS::SNS::Topic
MatchmakingTopicPolicy:
Type: AWS::SNS::TopicPolicy
Properties:
Topics:
- !Ref MatchmakingTopic
PolicyDocument:
Version: '2008-10-17'
Statement:
-
Sid: OwnerPolicy
Effect: Allow
Principal:
AWS: "*"
Action:
- SNS:GetTopicAttributes
- SNS:SetTopicAttributes
- SNS:AddPermission
- SNS:RemovePermission
- SNS:DeleteTopic
- SNS:Subscribe
- SNS:ListSubscriptionsByTopic
- SNS:Publish
- SNS:Receive
Resource: !Ref MatchmakingTopic
Condition:
StringEquals:
AWS:SourceOwner: !Ref "AWS::AccountId"
-
Sid: MatchmakingGameLiftPolicy
Effect: Allow
Principal:
Service: gamelift.amazonaws.com
Action: SNS:Publish
Resource: !Ref MatchmakingTopic