-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.yaml
625 lines (588 loc) · 18.2 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
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
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: SAM Template for LambdaJudge
Parameters:
APIAccessKeyValue:
Type: String
Description: The API Key value to access the API Gateway
EFSProblemsEncryptionKey:
Type: String
Description: The encryption key for the problems store on EFS
Globals:
Function:
Timeout: 300 # 5 min
MemorySize: 1769 # 1769 MB RAM
EphemeralStorage: # Temporary storage - for fast processing and to avoid memory errors
Size: 1769 # 1769 MB SSD
Resources:
# VPC, Subnet, EFS config - source: https://github.com/aws-samples/aws-lambda-efs-samples/blob/master/1-setup/create-efs-cfn.yml
JudgeVPC:
Type: AWS::EC2::VPC
Properties:
CidrBlock: 172.31.0.0/16
EnableDnsHostnames: true
EnableDnsSupport: true
Tags:
- Key: Name
Value: JudgeVPC
CodeRunnerPrivateSubnet:
Type: AWS::EC2::Subnet
Properties:
CidrBlock: 172.31.1.0/24
VpcId: !Ref JudgeVPC
AvailabilityZone: 'us-east-1a'
Tags:
- Key: Name
Value: CodeRunnerPrivateSubnet
# source: https://github.com/awsdocs/aws-lambda-developer-guide/blob/main/templates/vpc-private.yaml
PrivateSubnet:
Type: AWS::EC2::Subnet
Properties:
CidrBlock: 172.31.2.0/24
VpcId: !Ref JudgeVPC
AvailabilityZone: 'us-east-1a'
MapPublicIpOnLaunch: false
Tags:
- Key: Name
Value: PrivateSubnet
PrivateRouteTable:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref JudgeVPC
Tags:
- Key: Name
Value: Public Routes
PrivateSubnetRouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
SubnetId: !Ref PrivateSubnet
RouteTableId: !Ref PrivateRouteTable
# EFS
FileSystemResource:
Type: AWS::EFS::FileSystem
Properties:
PerformanceMode: generalPurpose # generalPurpose | maxIO
Encrypted: true
BackupPolicy:
Status: ENABLED
FileSystemTags:
- Key: Name
Value: JudgeFS
AccessPointResource:
Type: AWS::EFS::AccessPoint
Properties:
FileSystemId: !Ref FileSystemResource
PosixUser:
Uid: '1000'
Gid: '1000'
RootDirectory:
CreationInfo:
OwnerGid: '1000'
OwnerUid: '1000'
Permissions: '0777'
Path: '/mnt/efs'
CodeRunnerMountTarget:
Type: AWS::EFS::MountTarget
Properties:
FileSystemId: !Ref FileSystemResource
SubnetId: !Ref CodeRunnerPrivateSubnet
SecurityGroups:
- !GetAtt JudgeVPC.DefaultSecurityGroup
# Execution roles
TriggerSyncRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
SyncS3WithEFSRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
BouncerRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
ContestantRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
# Policies
AllowLoggingPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: AllowLoggingPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'logs:CreateLogGroup'
- 'logs:CreateLogStream'
- 'logs:PutLogEvents'
Resource: '*'
Roles:
- Ref: BouncerRole
- Ref: ContestantRole
- Ref: TriggerSyncRole
- Ref: SyncS3WithEFSRole
DynamoDBAccessPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: DynamoDBAccessPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'dynamodb:PutItem'
Resource: '*'
Roles:
- Ref: TriggerSyncRole
AllowS3ReadPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: AllowS3ReadPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 's3:GetObject'
- 's3:ListBucket'
- 's3:GetBucketLocation'
- 's3:GetObjectVersion'
- 's3:GetLifecycleConfiguration'
Resource: '*'
Roles:
- Ref: TriggerSyncRole
- Ref: SyncS3WithEFSRole
AllowEC2NetworkInterfacesPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: AllowEC2NetworkInterfacesPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'ec2:CreateNetworkInterface'
- 'ec2:DeleteNetworkInterface'
- 'ec2:DescribeNetworkInterfaces'
- 'ec2:DetachNetworkInterface'
Resource: '*'
Roles:
- Ref: SyncS3WithEFSRole
- Ref: ContestantRole
AllowLambdaInvokationPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: AllowLambdaInvokationPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'lambda:InvokeFunction'
Resource: '*'
Roles:
- Ref: TriggerSyncRole
- Ref: BouncerRole
SyncS3WithEFSPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: SyncS3WithEFSPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'elasticfilesystem:ClientMount'
- 'elasticfilesystem:ClientRootAccess'
- 'elasticfilesystem:ClientWrite'
- 'elasticfilesystem:DescribeMountTargets'
Resource: !Sub arn:aws:elasticfilesystem:${AWS::Region}:${AWS::AccountId}:file-system/${FileSystemResource}
Roles:
- Ref: SyncS3WithEFSRole
ContestantEFSAccessPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: ContestantPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'elasticfilesystem:ClientMount'
- 'elasticfilesystem:DescribeMountTargets'
Resource: !Sub arn:aws:elasticfilesystem:${AWS::Region}:${AWS::AccountId}:file-system/${FileSystemResource}
Roles:
- Ref: ContestantRole
# S3 bucket for test cases (zip files)
LambdaJudgeTestsBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: 'lambda-judge-tests-bucket'
CorsConfiguration:
CorsRules:
- AllowedHeaders:
- "*"
AllowedMethods:
- GET
- PUT
- HEAD
AllowedOrigins:
- "*"
# S3 VPC Endpoint
S3VPCEndpoint:
Type: AWS::EC2::VPCEndpoint
Properties:
ServiceName: !Sub com.amazonaws.${AWS::Region}.s3
RouteTableIds:
- !Ref PrivateRouteTable
VpcEndpointType: Gateway
VpcId: !Ref JudgeVPC
# Lambda Functions
# More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
SyncS3Trigger:
Type: AWS::Serverless::Function
Properties:
FunctionName: TriggerSyncS3
MemorySize: 256
PackageType: Image
Role: !GetAtt TriggerSyncRole.Arn
Environment:
Variables:
DYNAMODB_TABLE_NAME: !Ref PrivateTestsTable
EFS_PROBLEMS_ENCRYPTION_KEY: !Ref EFSProblemsEncryptionKey
Events:
SyncS3TestsWithEFSEvent:
Type: S3
Properties:
Bucket: !Ref LambdaJudgeTestsBucket
Events: s3:ObjectCreated:*
Filter:
S3Key:
Rules:
- Name: suffix # or prefix
Value: zip # The value to search for in the S3 object key names
Metadata:
DockerTag: sync-trigger-v1
DockerContext: ./
Dockerfile: sync/trigger.Dockerfile
PrivateTestsTable:
Type: "AWS::Serverless::SimpleTable"
SyncS3WithEFS:
Type: AWS::Serverless::Function
DependsOn: CodeRunnerMountTarget
Properties:
FunctionName: SyncS3WithEFS
MemorySize: 10240 # maximum RAM - for fast processing and to avoid memory errors
EphemeralStorage: # maximum SSD - for fast processing and to avoid memory errors
Size: 10240
PackageType: Image
Role: !GetAtt SyncS3WithEFSRole.Arn
VpcConfig:
SecurityGroupIds:
- !GetAtt JudgeVPC.DefaultSecurityGroup
SubnetIds:
- !Ref PrivateSubnet
FileSystemConfigs:
- Arn: !GetAtt AccessPointResource.Arn
LocalMountPath: '/mnt/efs'
Metadata:
DockerTag: sync-efs-v1
DockerContext: ./
Dockerfile: sync/sync.Dockerfile
BouncerApiAccessKey:
Type: AWS::ApiGateway::ApiKey
Properties:
Enabled: true
Name: 'BouncerApiAccessKey'
Value: !Ref APIAccessKeyValue
BouncerUsagePlan:
Type: AWS::ApiGateway::UsagePlan
Properties:
Description: 'Usage plan for Bouncer API'
ApiStages:
- ApiId: !Ref ServerlessRestApi # Replace with your RestApi Resource ID if different
Stage: Prod
Throttle:
BurstLimit: 10000
RateLimit: 10000
Quota:
Limit: 100000000
Period: MONTH
BouncerUsagePlanKey:
Type: AWS::ApiGateway::UsagePlanKey
Properties:
KeyId: !Ref BouncerApiAccessKey
KeyType: 'API_KEY'
UsagePlanId: !Ref BouncerUsagePlan
Bouncer:
Type: AWS::Serverless::Function
Properties:
FunctionName: Bouncer
MemorySize: 256
PackageType: Image
Role: !GetAtt BouncerRole.Arn
Environment:
Variables:
EFS_PROBLEMS_ENCRYPTION_KEY: !Ref EFSProblemsEncryptionKey
Events:
Check:
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: /check
Method: post
RestApiId: !Ref ServerlessRestApi
Auth:
ApiKeyRequired: true
Metadata:
DockerTag: bouncer-v1
DockerContext: ./
Dockerfile: bouncer/Dockerfile
CodeRunnerTxt:
Type: AWS::Serverless::Function
DependsOn: CodeRunnerMountTarget
Properties:
FunctionName: CodeRunnerTxt
PackageType: Image
Role: !GetAtt ContestantRole.Arn
VpcConfig:
SecurityGroupIds:
- !GetAtt JudgeVPC.DefaultSecurityGroup
SubnetIds:
- !Ref CodeRunnerPrivateSubnet
FileSystemConfigs:
- Arn: !GetAtt AccessPointResource.Arn
LocalMountPath: '/mnt/efs'
Metadata:
DockerTag: txt-v1
DockerContext: ./
Dockerfile: coderunners/lang/txt.Dockerfile
CodeRunnerPython:
Type: AWS::Serverless::Function
DependsOn: CodeRunnerMountTarget
Properties:
FunctionName: CodeRunnerPython
PackageType: Image
Role: !GetAtt ContestantRole.Arn
VpcConfig:
SecurityGroupIds:
- !GetAtt JudgeVPC.DefaultSecurityGroup
SubnetIds:
- !Ref CodeRunnerPrivateSubnet
FileSystemConfigs:
- Arn: !GetAtt AccessPointResource.Arn
LocalMountPath: '/mnt/efs'
Metadata:
DockerTag: python-v1
DockerContext: ./
Dockerfile: coderunners/lang/python.Dockerfile
CodeRunnerPythonML:
Type: AWS::Serverless::Function
DependsOn: CodeRunnerMountTarget
Properties:
FunctionName: CodeRunnerPythonML
PackageType: Image
Role: !GetAtt ContestantRole.Arn
VpcConfig:
SecurityGroupIds:
- !GetAtt JudgeVPC.DefaultSecurityGroup
SubnetIds:
- !Ref CodeRunnerPrivateSubnet
FileSystemConfigs:
- Arn: !GetAtt AccessPointResource.Arn
LocalMountPath: '/mnt/efs'
Metadata:
DockerTag: python-ml-v1
DockerContext: ./
Dockerfile: coderunners/lang/pythonML.Dockerfile
CodeRunnerC:
Type: AWS::Serverless::Function
DependsOn: CodeRunnerMountTarget
Properties:
FunctionName: CodeRunnerC
PackageType: Image
Role: !GetAtt ContestantRole.Arn
VpcConfig:
SecurityGroupIds:
- !GetAtt JudgeVPC.DefaultSecurityGroup
SubnetIds:
- !Ref CodeRunnerPrivateSubnet
FileSystemConfigs:
- Arn: !GetAtt AccessPointResource.Arn
LocalMountPath: '/mnt/efs'
Metadata:
DockerTag: c-v1
DockerContext: ./
Dockerfile: coderunners/lang/c.Dockerfile
CodeRunnerCpp:
Type: AWS::Serverless::Function
DependsOn: CodeRunnerMountTarget
Properties:
FunctionName: CodeRunnerCpp
PackageType: Image
Role: !GetAtt ContestantRole.Arn
VpcConfig:
SecurityGroupIds:
- !GetAtt JudgeVPC.DefaultSecurityGroup
SubnetIds:
- !Ref CodeRunnerPrivateSubnet
FileSystemConfigs:
- Arn: !GetAtt AccessPointResource.Arn
LocalMountPath: '/mnt/efs'
Metadata:
DockerTag: cpp-v1
DockerContext: ./
Dockerfile: coderunners/lang/cpp.Dockerfile
CodeRunnerCSharp:
Type: AWS::Serverless::Function
DependsOn: CodeRunnerMountTarget
Properties:
FunctionName: CodeRunnerCSharp
PackageType: Image
Role: !GetAtt ContestantRole.Arn
VpcConfig:
SecurityGroupIds:
- !GetAtt JudgeVPC.DefaultSecurityGroup
SubnetIds:
- !Ref CodeRunnerPrivateSubnet
FileSystemConfigs:
- Arn: !GetAtt AccessPointResource.Arn
LocalMountPath: '/mnt/efs'
Metadata:
DockerTag: csharp-v1
DockerContext: ./
Dockerfile: coderunners/lang/csharp.Dockerfile
CodeRunnerJs:
Type: AWS::Serverless::Function
DependsOn: CodeRunnerMountTarget
Properties:
FunctionName: CodeRunnerJs
PackageType: Image
Role: !GetAtt ContestantRole.Arn
VpcConfig:
SecurityGroupIds:
- !GetAtt JudgeVPC.DefaultSecurityGroup
SubnetIds:
- !Ref CodeRunnerPrivateSubnet
FileSystemConfigs:
- Arn: !GetAtt AccessPointResource.Arn
LocalMountPath: '/mnt/efs'
Metadata:
DockerTag: js-v1
DockerContext: ./
Dockerfile: coderunners/lang/js.Dockerfile
CodeRunnerJava:
Type: AWS::Serverless::Function
DependsOn: CodeRunnerMountTarget
Properties:
FunctionName: CodeRunnerJava
PackageType: Image
Role: !GetAtt ContestantRole.Arn
VpcConfig:
SecurityGroupIds:
- !GetAtt JudgeVPC.DefaultSecurityGroup
SubnetIds:
- !Ref CodeRunnerPrivateSubnet
FileSystemConfigs:
- Arn: !GetAtt AccessPointResource.Arn
LocalMountPath: '/mnt/efs'
Metadata:
DockerTag: java-v1
DockerContext: ./
Dockerfile: coderunners/lang/java.Dockerfile
CodeRunnerSQLite:
Type: AWS::Serverless::Function
DependsOn: CodeRunnerMountTarget
Properties:
FunctionName: CodeRunnerSQLite
PackageType: Image
Role: !GetAtt ContestantRole.Arn
VpcConfig:
SecurityGroupIds:
- !GetAtt JudgeVPC.DefaultSecurityGroup
SubnetIds:
- !Ref CodeRunnerPrivateSubnet
FileSystemConfigs:
- Arn: !GetAtt AccessPointResource.Arn
LocalMountPath: '/mnt/efs'
Metadata:
DockerTag: sqlite-v1
DockerContext: ./
Dockerfile: coderunners/lang/sqlite.Dockerfile
Outputs:
# ServerlessRestApi is 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
Check:
Description: 'API Gateway endpoint URL for Prod stage for Bouncer function'
Value: !Sub 'https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/check/'
Bouncer:
Description: 'AWS Lambda checker for determining if the output of a code is exactly the same as the target'
Value: !GetAtt Bouncer.Arn
BouncerApiAccessKey:
Description: "API Access Key for the Bouncer lambda function"
Value: !Ref BouncerApiAccessKey
CodeRunnerTxt:
Description: 'AWS Lambda for checking textual outputs'
Value: !GetAtt CodeRunnerTxt.Arn
CodeRunnerPython:
Description: 'AWS Lambda for executing a python code and getting the outputs'
Value: !GetAtt CodeRunnerPython.Arn
CodeRunnerPythonML:
Description: 'AWS Lambda for executing a python code for ML applications and getting the outputs'
Value: !GetAtt CodeRunnerPythonML.Arn
CodeRunnerC:
Description: 'AWS Lambda for executing a C code and getting the outputs'
Value: !GetAtt CodeRunnerC.Arn
CodeRunnerCpp:
Description: 'AWS Lambda for executing a C++ code and getting the outputs'
Value: !GetAtt CodeRunnerCpp.Arn
CodeRunnerCSharp:
Description: 'AWS Lambda for executing a C# code and getting the outputs'
Value: !GetAtt CodeRunnerCSharp.Arn
CodeRunnerJs:
Description: 'AWS Lambda for executing a JS code and getting the outputs'
Value: !GetAtt CodeRunnerJs.Arn
CodeRunnerJava:
Description: 'AWS Lambda for executing a Java code and getting the outputs'
Value: !GetAtt CodeRunnerJava.Arn
CodeRunnerSQLite:
Description: 'AWS Lambda for executing a SQL/SQLite code and getting the results with tables'
Value: !GetAtt CodeRunnerSQLite.Arn
SyncS3WithEFSName:
Description: 'AWS Lambda for syncing S3 bucket for test cases with EFS'
Value: !GetAtt SyncS3WithEFS.Arn