-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdemo-template.yml
More file actions
607 lines (596 loc) · 23.2 KB
/
demo-template.yml
File metadata and controls
607 lines (596 loc) · 23.2 KB
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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
AWSTemplateFormatVersion: 2010-09-09
Transform: AWS::Serverless-2016-10-31
Description: The demo SheepShed API in the chosen language
Parameters:
ProjectName:
Type: String
Lang:
Type: String
Description: The language of deployment
AllowedValues:
- "rust"
- "python"
Conditions:
cIsRust: !Equals [!Ref Lang, "rust"]
cIsPython: !Equals [!Ref Lang, "python"]
Globals:
Function:
Runtime: !If
- cIsRust
- provided.al2023
- python3.12
MemorySize: !If
- cIsRust
- 128
- 128
Timeout: 30
Handler: !If
- cIsRust
- rust.handler
- index.lambda_handler
Architectures:
- arm64
Layers: !If
- cIsPython
- [!Ref CommonsLambdaLayer]
- !Ref AWS::NoValue
Environment:
Variables:
BACKEND_TABLE_NAME: !Ref BackendTable
ALLOW_ORIGIN: "*"
RUST_LOG: debug,hyper=info,tracing=info,aws_config=info,aws_smithy_runtime=info,aws_smithy_runtime_api=info,rustls=info
Resources:
#################
# Backend table #
#################
BackendTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: !Sub ${ProjectName}-${Lang}-backend
BillingMode: PAY_PER_REQUEST
AttributeDefinitions:
- AttributeName: tattoo
AttributeType: N
KeySchema:
- AttributeName: tattoo
KeyType: HASH
##############################
# Shared Python Lambda Layer #
##############################
CommonsLambdaLayer:
Type: AWS::Lambda::LayerVersion
Condition: cIsPython
Properties:
CompatibleRuntimes:
- python3.12
Content: python/layers/commons
Description: Lambda layer containing various utils for interacting with ApiGateway and DynamoDB
LayerName: !Sub ${ProjectName}-${Lang}-commons
###########
# Lambdas #
###########
####################
# GET /cat?m=2&n=3 #
####################
GetCatAckermannFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Sub ${ProjectName}-${Lang}-get-cat-ackermann
CodeUri: lambdas/get-cat-ackermann
Events:
SheepShedAPI:
Type: Api
Properties:
RestApiId: !Ref SheepShedAPI
Path: /cat
Method: get
GetCatAckermannFunctionLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub /aws/lambda/${GetCatAckermannFunction}
RetentionInDays: 90
############
# GET /dog #
############
GetDogCountFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Sub ${ProjectName}-${Lang}-get-dog-count
CodeUri: lambdas/get-dog-count
Events:
SheepShedAPI:
Type: Api
Properties:
RestApiId: !Ref SheepShedAPI
Path: /dog
Method: get
Policies:
- Version: 2012-10-17
Statement:
- Sid: DescribeShed
Effect: Allow
Action: dynamodb:DescribeTable
Resource: !GetAtt BackendTable.Arn
- Sid: CountSheeps
Effect: Allow
Action: dynamodb:Scan
Resource: !GetAtt BackendTable.Arn
Condition:
StringEquals:
"dynamodb:Select": COUNT
GetDogCountFunctionLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub /aws/lambda/${GetDogCountFunction}
RetentionInDays: 90
################
# DELETE /wolf #
################
DeleteWolfOcdFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Sub ${ProjectName}-${Lang}-delete-wolf-ocd
CodeUri: lambdas/delete-wolf-ocd
Events:
SheepShedAPI:
Type: Api
Properties:
RestApiId: !Ref SheepShedAPI
Path: /wolf
Method: delete
Policies:
- Version: 2012-10-17
Statement:
- Sid: DescribeShed
Effect: Allow
Action: dynamodb:DescribeTable
Resource: !GetAtt BackendTable.Arn
- Sid: ListSheeps
Effect: Allow
Action: dynamodb:Scan
Resource: !GetAtt BackendTable.Arn
Condition:
StringEquals:
"dynamodb:Select": ALL_ATTRIBUTES
- Sid: DevourSheep
Effect: Allow
Action: dynamodb:DeleteItem
Resource: !GetAtt BackendTable.Arn
Condition:
StringEquals:
"dynamodb:ReturnValues": ALL_OLD
DeleteWolfOcdFunctionLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub /aws/lambda/${DeleteWolfOcdFunction}
RetentionInDays: 90
#######################
# POST /sheep/{Tattoo} #
#######################
PostSheepRandomFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Sub ${ProjectName}-${Lang}-post-sheep-random
CodeUri: lambdas/post-sheep-random
Events:
SheepShedAPI:
Type: Api
Properties:
RestApiId: !Ref SheepShedAPI
Path: /sheep/{Tattoo}
Method: post
Policies:
- Version: 2012-10-17
Statement:
- Sid: AddSheep
Effect: Allow
Action: dynamodb:PutItem
Resource: !GetAtt BackendTable.Arn
Condition:
ForAllValues:StringEquals:
"dynamodb:Attributes":
- tattoo
- weight
StringEquals:
"dynamodb:ReturnValues": NONE
PostSheepRandomFunctionLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub /aws/lambda/${PostSheepRandomFunction}
RetentionInDays: 90
#######
# API #
#######
SheepShedAPI:
Type: AWS::Serverless::Api
Properties:
Name: !Sub api-${Lang}-${ProjectName}
Description: !Sub Backend REST API for the SheepShed with ${Lang} lambdas
EndpointConfiguration:
Type: REGIONAL
MergeDefinitions: false
OpenApiVersion: 3.0.1
FailOnWarnings: true
DefinitionBody:
openapi: "3.0.1"
info:
title: Sheep shed API
description: A sheep shed
version: "1"
paths:
/cat:
options:
tags:
- options
description: Preflight CORS checks for the PATH
responses:
"200":
description: "200 response"
headers:
Access-Control-Allow-Origin:
$ref: "#/components/headers/Access-Control-Allow-Origin"
Access-Control-Allow-Methods:
$ref: "#/components/headers/Access-Control-Allow-Methods"
Access-Control-Allow-Headers:
$ref: "#/components/headers/Access-Control-Allow-Headers"
x-amazon-apigateway-integration:
type: mock
requestTemplates:
application/json: '{"statusCode" : 200}'
responses:
default:
statusCode: "200"
responseParameters:
method.response.header.Access-Control-Allow-Origin: "'*'"
method.response.header.Access-Control-Allow-Methods: "'OPTIONS,GET'"
method.response.header.Access-Control-Allow-Headers: "'Content-Type'"
responseTemplates:
application/json: "{}"
get:
description: >-
Ask the cat to compute the Ackermann algorithm for some value of m and n
parameters:
- $ref: "#/components/parameters/AckermannNumberN"
- $ref: "#/components/parameters/AckermannNumberM"
responses:
"200":
$ref: "#/components/responses/AckermannResult"
"400":
$ref: "#/components/responses/GenericError"
x-amazon-apigateway-integration:
type: aws_proxy
httpMethod: POST
uri: !Sub arn:${AWS::Partition}:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${GetCatAckermannFunction.Arn}/invocations
passthroughBehavior: when_no_match
x-amazon-apigateway-request-validator: basic
/dog:
options:
tags:
- options
description: Preflight CORS checks for the PATH
responses:
"200":
description: "200 response"
headers:
Access-Control-Allow-Origin:
$ref: "#/components/headers/Access-Control-Allow-Origin"
Access-Control-Allow-Methods:
$ref: "#/components/headers/Access-Control-Allow-Methods"
Access-Control-Allow-Headers:
$ref: "#/components/headers/Access-Control-Allow-Headers"
x-amazon-apigateway-integration:
type: mock
requestTemplates:
application/json: '{"statusCode" : 200}'
responses:
default:
statusCode: "200"
responseParameters:
method.response.header.Access-Control-Allow-Origin: "'*'"
method.response.header.Access-Control-Allow-Methods: "'OPTIONS,GET'"
method.response.header.Access-Control-Allow-Headers: "'Content-Type'"
responseTemplates:
application/json: "{}"
get:
description: Ask the dog to count the sheeps in the shed
responses:
"200":
$ref: "#/components/responses/SheepCount"
x-amazon-apigateway-integration:
type: aws_proxy
httpMethod: POST
uri: !Sub arn:${AWS::Partition}:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${GetDogCountFunction.Arn}/invocations
passthroughBehavior: when_no_match
x-amazon-apigateway-request-validator: basic
/sheep/{Tattoo}:
options:
tags:
- options
description: Preflight CORS checks for the PATH
parameters:
- $ref: "#/components/parameters/Tattoo"
responses:
"200":
description: "200 response"
headers:
Access-Control-Allow-Origin:
$ref: "#/components/headers/Access-Control-Allow-Origin"
Access-Control-Allow-Methods:
$ref: "#/components/headers/Access-Control-Allow-Methods"
Access-Control-Allow-Headers:
$ref: "#/components/headers/Access-Control-Allow-Headers"
x-amazon-apigateway-integration:
type: mock
requestTemplates:
application/json: '{"statusCode" : 200}'
responses:
default:
statusCode: "200"
responseParameters:
method.response.header.Access-Control-Allow-Origin: "'*'"
method.response.header.Access-Control-Allow-Methods: "'OPTIONS,POST'"
method.response.header.Access-Control-Allow-Headers: "'Content-Type'"
responseTemplates:
application/json: "{}"
post:
description: Generate a new sheep for the shed with the given Tattoo and a random Weight
parameters:
- $ref: "#/components/parameters/Tattoo"
responses:
"200":
$ref: "#/components/responses/Sheep"
"400":
$ref: "#/components/responses/GenericError"
x-amazon-apigateway-integration:
type: aws_proxy
httpMethod: POST
uri: !Sub arn:${AWS::Partition}:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${PostSheepRandomFunction.Arn}/invocations
passthroughBehavior: when_no_match
x-amazon-apigateway-request-validator: basic
/wolf/:
options:
tags:
- options
description: Preflight CORS checks for the PATH
responses:
"200":
description: "200 response"
headers:
Access-Control-Allow-Origin:
$ref: "#/components/headers/Access-Control-Allow-Origin"
Access-Control-Allow-Methods:
$ref: "#/components/headers/Access-Control-Allow-Methods"
Access-Control-Allow-Headers:
$ref: "#/components/headers/Access-Control-Allow-Headers"
x-amazon-apigateway-integration:
type: mock
requestTemplates:
application/json: '{"statusCode" : 200}'
responses:
default:
statusCode: "200"
responseParameters:
method.response.header.Access-Control-Allow-Origin: "'*'"
method.response.header.Access-Control-Allow-Methods: "'OPTIONS,DELETE'"
method.response.header.Access-Control-Allow-Headers: "'Content-Type'"
responseTemplates:
application/json: "{}"
delete:
description: >-
The hungry wolf will eat a sheep from the shed, but only if it finds one
with a weight that satisfy its Obsessive-Compulsive Disorder (OCD)
responses:
"204":
$ref: "#/components/responses/Empty"
"404":
$ref: "#/components/responses/GenericError"
x-amazon-apigateway-integration:
type: aws_proxy
httpMethod: POST
uri: !Sub arn:${AWS::Partition}:apigateway:${AWS::Region}:lambda:path/2015-03-31/functions/${DeleteWolfOcdFunction.Arn}/invocations
passthroughBehavior: when_no_match
x-amazon-apigateway-request-validator: basic
components:
################################################################################
# Headers #
################################################################################
headers:
Access-Control-Allow-Headers:
schema:
type: string
Access-Control-Allow-Methods:
schema:
type: string
Access-Control-Allow-Origin:
schema:
type: string
################################################################################
# Schemas #
################################################################################
schemas:
ackermannresult:
type: object
description: Ackermann algorithm result
required:
- result
properties:
result:
type: integer
format: int64
minimum: 0
sheep:
type: object
description: A sheep
required:
- tattoo
- weight
properties:
tattoo:
type: integer
format: int64
minimum: 0
weight:
type: integer
format: int64
minimum: 80000000000
maximum: 160000000000
description: The weight of the sheep, expressed in micrograms
sheepcount:
type: object
description: The sheep count in the shed
required:
- count
properties:
count:
type: integer
format: int64
minimum: 0
################################################################################
# Parameters #
################################################################################
parameters:
Tattoo:
name: Tattoo
description: The tattoo of a sheep
in: path
required: true
schema:
type: string
pattern: ^\d{1,20}$
AckermannNumberN:
name: "n"
description: >-
The number 'n' for the Ackermann algorithm. We use the 2-ary function as defined on
Wikipedia: https://en.wikipedia.org/wiki/Ackermann_function#TRS,_based_on_2-ary_function
in: query
required: true
schema:
type: integer
format: int32
minimum: 0
maximum: 50000
AckermannNumberM:
name: "m"
description: >-
The number 'm' for the Ackermann algorithm. We use the 2-ary function as defined on
Wikipedia: https://en.wikipedia.org/wiki/Ackermann_function#TRS,_based_on_2-ary_function
in: query
required: true
schema:
type: integer
format: int32
minimum: 0
maximum: 4
################################################################################
# Request bodies #
################################################################################
requestBodies: {}
################################################################################
# Responses objects #
################################################################################
responses:
AckermannResult:
description: Ackermann algorithm result
headers:
Access-Control-Allow-Origin:
$ref: "#/components/headers/Access-Control-Allow-Origin"
content:
application/json:
schema:
$ref: "#/components/schemas/ackermannresult"
Sheep:
description: A sheep
headers:
Access-Control-Allow-Origin:
$ref: "#/components/headers/Access-Control-Allow-Origin"
content:
application/json:
schema:
$ref: "#/components/schemas/sheep"
SheepCount:
description: The number of sheeps currently in the shed
headers:
Access-Control-Allow-Origin:
$ref: "#/components/headers/Access-Control-Allow-Origin"
content:
application/json:
schema:
$ref: "#/components/schemas/sheepcount"
GenericError:
description: The generic error
headers:
Access-Control-Allow-Origin:
$ref: "#/components/headers/Access-Control-Allow-Origin"
content:
application/json:
schema:
type: object
description: The standard error object for this API
required:
- message
properties:
message:
type: string
description: The message giving details about the error
Empty:
description: An empty response
headers:
Access-Control-Allow-Origin:
$ref: "#/components/headers/Access-Control-Allow-Origin"
################################################################################
# Security Definitions #
################################################################################
securitySchemes: {}
################################################################################
# Security #
################################################################################
security: []
################################################################################
# Tags #
################################################################################
tags:
- name: options
description: All the options API methods
################################################################################
# Validators #
################################################################################
x-amazon-apigateway-request-validators:
basic:
validateRequestBody: true
validateRequestParameters: true
################################################################################
# Custom API Gateway responses #
################################################################################
x-amazon-apigateway-gateway-responses:
DEFAULT_4XX:
responseParameters:
gatewayresponse.header.Access-Control-Allow-Origin: "'*'"
responseTemplates:
application/json: '{"message":$context.error.messageString}'
DEFAULT_5XX:
responseParameters:
gatewayresponse.header.Access-Control-Allow-Origin: "'*'"
responseTemplates:
application/json: '{"message":$context.error.messageString}'
################################################################################
# Documentation #
################################################################################
x-amazon-apigateway-documentation:
version: v1.0
createdDate: "2024-03-05T08:28:00Z"
documentationParts:
- location:
type: API
properties:
info:
description: Sheep shed API
StageName: v1
MethodSettings:
- ResourcePath: "/*"
HttpMethod: "*"
ThrottlingBurstLimit: 100000
ThrottlingRateLimit: 10000
Outputs:
ApiUrl:
Description: The URL of the API
Value: !Sub https://${SheepShedAPI}.execute-api.${AWS::Region}.amazonaws.com/v1/