-
Notifications
You must be signed in to change notification settings - Fork 7
/
nrt.template.yaml
470 lines (469 loc) · 12.8 KB
/
nrt.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
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: 'serverless-video-transcoder
'
Metadata:
AWS::ServerlessRepo::Application:
Name: serverless-video-transcoder
Description: Serverless Video Transcoder
Author: Harold Sun
SpdxLicenseId: Apache-2.0
LicenseUrl: s3://serverless-video-transcoder-ap-northeast-1/assets/2b42edef8fa55315f34f2370b4715ca9
ReadmeUrl: s3://serverless-video-transcoder-ap-northeast-1/assets/1e8ed5bb35c68c1e225a059b3eb6c617
Labels:
- S3
- Lambda
- Step_Functions
- EFS
- Video
- Transcode
HomePageUrl: https://github.com/bnusunny/serverless-video-transcoder
SemanticVersion: '0.0.2'
SourceCodeUrl: https://github.com/bnusunny/serverless-video-transcoder
Parameters:
EnvironmentName:
Description: An environment name that is prefixed to resource names
Type: String
Default: Dev
VpcCIDR:
Description: Please enter the IP range (CIDR notation) for this VPC
Type: String
AllowedPattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$
Default: 10.192.0.0/16
PublicSubnet1CIDR:
Description: Please enter the IP range (CIDR notation) for the public subnet in
the first Availability Zone
Type: String
AllowedPattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$
Default: 10.192.0.0/20
PublicSubnet2CIDR:
Description: Please enter the IP range (CIDR notation) for the public subnet in
the second Availability Zone
Type: String
AllowedPattern: ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(\/([0-9]|[1-2][0-9]|3[0-2]))$
Default: 10.192.16.0/20
VideosBucketName:
Type: String
Description: 'REQUIRED: Unique S3 bucket name to use for the app.'
EFSpath:
Type: String
Default: /mnt/efs
Globals:
Function:
Timeout: 30
Runtime: python3.7
MemorySize: 512
Tracing: Active
Layers:
- Fn::Sub: arn:${AWS::Partition}:lambda:${AWS::Region}:580247275435:layer:LambdaInsightsExtension:12
Resources:
VideosBucket:
Type: AWS::S3::Bucket
Properties:
BucketName:
Ref: VideosBucketName
JobTable:
Type: AWS::Serverless::SimpleTable
FFmpegLayer:
Type: AWS::Serverless::LayerVersion
Properties:
ContentUri: s3://serverless-video-transcoder-ap-northeast-1/assets/b58ac6543eb64e6cefc1bab452d893ca
CompatibleRuntimes:
- python3.8
- python3.7
- python3.6
TriggerFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: s3://serverless-video-transcoder-ap-northeast-1/assets/429a76628dfece1d981f316d242a5584
Handler: app.lambda_handler
Policies:
- S3ReadPolicy:
BucketName:
Ref: VideosBucketName
- DynamoDBWritePolicy:
TableName:
Ref: JobTable
- StepFunctionsExecutionPolicy:
StateMachineName:
Fn::GetAtt:
- MainStateMachine
- Name
- CloudWatchLambdaInsightsExecutionRolePolicy
Environment:
Variables:
JOB_TABLE:
Ref: JobTable
SFN_ARN:
Ref: MainStateMachine
DEFAULT_SEGMENT_TIME: 60
ENABLE_HLS: 0
Layers:
- Ref: FFmpegLayer
Events:
S3NewObjectEvent:
Type: S3
Properties:
Bucket:
Ref: VideosBucket
Events: s3:ObjectCreated:*
Filter:
S3Key:
Rules:
- Name: suffix
Value: .mp4
- Name: prefix
Value: input/
MainStateMachine:
Type: AWS::Serverless::StateMachine
Properties:
DefinitionUri:
Bucket: serverless-video-transcoder-ap-northeast-1
Key: assets/545682c6071f3deab46b0e80036d4cce
Tracing:
Enabled: true
DefinitionSubstitutions:
ControllerFunctionArn:
Fn::GetAtt:
- ControllerFunction
- Arn
TranscodeVideoFunctionArn:
Fn::GetAtt:
- TranscodeVideoFunction
- Arn
MergeVideoFunctionArn:
Fn::GetAtt:
- MergeVideoFunction
- Arn
Policies:
- CloudWatchPutMetricPolicy: {}
- CloudWatchLogsFullAccess
- LambdaInvokePolicy:
FunctionName:
Ref: ControllerFunction
- LambdaInvokePolicy:
FunctionName:
Ref: TranscodeVideoFunction
- LambdaInvokePolicy:
FunctionName:
Ref: MergeVideoFunction
- CloudWatchLambdaInsightsExecutionRolePolicy
- AWSXRayDaemonWriteAccess
ControllerFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: s3://serverless-video-transcoder-ap-northeast-1/assets/e4bd751a83108e3b8a8980b817bf043c
Handler: app.lambda_handler
MemorySize: 10240
Timeout: 900
Environment:
Variables:
EFS_PATH:
Ref: EFSpath
PARALLEL_GROUPS: 3
DEFAULT_CONCURENCY: 30
DEFAULT_SEGMENT_TIME: 30
Layers:
- Ref: FFmpegLayer
Policies:
- S3ReadPolicy:
BucketName:
Ref: VideosBucketName
- S3WritePolicy:
BucketName:
Ref: VideosBucketName
- EFSWriteAccessPolicy:
FileSystem:
Ref: FileSystemResource
AccessPoint:
Ref: AccessPointResource
- CloudWatchLambdaInsightsExecutionRolePolicy
VpcConfig:
SecurityGroupIds:
- Fn::GetAtt:
- VPC
- DefaultSecurityGroup
SubnetIds:
- Ref: PublicSubnet1
- Ref: PublicSubnet2
FileSystemConfigs:
- Arn:
Fn::Sub: arn:${AWS::Partition}:elasticfilesystem:${AWS::Region}:${AWS::AccountId}:access-point/${AccessPointResource}
LocalMountPath:
Ref: EFSpath
DependsOn:
- MountTargetResource1
- MountTargetResource2
TranscodeVideoFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: s3://serverless-video-transcoder-ap-northeast-1/assets/19bdbe4c065bca237fcbb839f50f9602
Handler: app.lambda_handler
MemorySize: 10240
Timeout: 900
Environment:
Variables:
EFS_PATH:
Ref: EFSpath
Layers:
- Ref: FFmpegLayer
Policies:
- S3ReadPolicy:
BucketName:
Ref: VideosBucketName
- S3WritePolicy:
BucketName:
Ref: VideosBucketName
- EFSWriteAccessPolicy:
FileSystem:
Ref: FileSystemResource
AccessPoint:
Ref: AccessPointResource
- CloudWatchLambdaInsightsExecutionRolePolicy
VpcConfig:
SecurityGroupIds:
- Fn::GetAtt:
- VPC
- DefaultSecurityGroup
SubnetIds:
- Ref: PublicSubnet1
- Ref: PublicSubnet2
FileSystemConfigs:
- Arn:
Fn::Sub: arn:${AWS::Partition}:elasticfilesystem:${AWS::Region}:${AWS::AccountId}:access-point/${AccessPointResource}
LocalMountPath:
Ref: EFSpath
DependsOn:
- MountTargetResource1
- MountTargetResource2
MergeVideoFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: s3://serverless-video-transcoder-ap-northeast-1/assets/00eb9281c255efcf54dc63b225c82d68
Handler: app.lambda_handler
MemorySize: 10240
Timeout: 900
Environment:
Variables:
EFS_PATH:
Ref: EFSpath
MEDIA_BUCKET:
Ref: VideosBucketName
Layers:
- Ref: FFmpegLayer
Policies:
- S3ReadPolicy:
BucketName:
Ref: VideosBucketName
- S3WritePolicy:
BucketName:
Ref: VideosBucketName
- EFSWriteAccessPolicy:
FileSystem:
Ref: FileSystemResource
AccessPoint:
Ref: AccessPointResource
- CloudWatchLambdaInsightsExecutionRolePolicy
VpcConfig:
SecurityGroupIds:
- Fn::GetAtt:
- VPC
- DefaultSecurityGroup
SubnetIds:
- Ref: PublicSubnet1
- Ref: PublicSubnet2
FileSystemConfigs:
- Arn:
Fn::Sub: arn:${AWS::Partition}:elasticfilesystem:${AWS::Region}:${AWS::AccountId}:access-point/${AccessPointResource}
LocalMountPath:
Ref: EFSpath
DependsOn:
- MountTargetResource1
- MountTargetResource2
VPC:
Type: AWS::EC2::VPC
Properties:
CidrBlock:
Ref: VpcCIDR
EnableDnsSupport: true
EnableDnsHostnames: true
Tags:
- Key: Name
Value:
Ref: EnvironmentName
InternetGateway:
Type: AWS::EC2::InternetGateway
Properties:
Tags:
- Key: Name
Value:
Ref: EnvironmentName
InternetGatewayAttachment:
Type: AWS::EC2::VPCGatewayAttachment
Properties:
InternetGatewayId:
Ref: InternetGateway
VpcId:
Ref: VPC
PublicSubnet1:
Type: AWS::EC2::Subnet
Properties:
VpcId:
Ref: VPC
AvailabilityZone:
Fn::Select:
- 0
- Fn::GetAZs: ''
CidrBlock:
Ref: PublicSubnet1CIDR
MapPublicIpOnLaunch: true
Tags:
- Key: Name
Value:
Fn::Sub: ${EnvironmentName} Public Subnet (AZ1)
PublicSubnet2:
Type: AWS::EC2::Subnet
Properties:
VpcId:
Ref: VPC
AvailabilityZone:
Fn::Select:
- 1
- Fn::GetAZs: ''
CidrBlock:
Ref: PublicSubnet2CIDR
MapPublicIpOnLaunch: true
Tags:
- Key: Name
Value:
Fn::Sub: ${EnvironmentName} Public Subnet (AZ2)
PublicRouteTable:
Type: AWS::EC2::RouteTable
Properties:
VpcId:
Ref: VPC
Tags:
- Key: Name
Value:
Fn::Sub: ${EnvironmentName} Public Routes
DefaultPublicRoute:
Type: AWS::EC2::Route
DependsOn: InternetGatewayAttachment
Properties:
RouteTableId:
Ref: PublicRouteTable
DestinationCidrBlock: '0.0.0.0/0'
GatewayId:
Ref: InternetGateway
PublicSubnet1RouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId:
Ref: PublicRouteTable
SubnetId:
Ref: PublicSubnet1
PublicSubnet2RouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId:
Ref: PublicRouteTable
SubnetId:
Ref: PublicSubnet2
EndpointS3:
Type: AWS::EC2::VPCEndpoint
Properties:
RouteTableIds:
- Ref: PublicRouteTable
ServiceName:
Fn::Sub: com.amazonaws.${AWS::Region}.s3
VpcId:
Ref: VPC
EndpointDDB:
Type: AWS::EC2::VPCEndpoint
Properties:
RouteTableIds:
- Ref: PublicRouteTable
ServiceName:
Fn::Sub: com.amazonaws.${AWS::Region}.dynamodb
VpcId:
Ref: VPC
FileSystemResource:
Type: AWS::EFS::FileSystem
Properties:
PerformanceMode: generalPurpose
LifecyclePolicies:
- TransitionToIA: AFTER_30_DAYS
MountTargetResource1:
Type: AWS::EFS::MountTarget
Properties:
FileSystemId:
Ref: FileSystemResource
SubnetId:
Ref: PublicSubnet1
SecurityGroups:
- Fn::GetAtt:
- VPC
- DefaultSecurityGroup
MountTargetResource2:
Type: AWS::EFS::MountTarget
Properties:
FileSystemId:
Ref: FileSystemResource
SubnetId:
Ref: PublicSubnet2
SecurityGroups:
- Fn::GetAtt:
- VPC
- DefaultSecurityGroup
AccessPointResource:
Type: AWS::EFS::AccessPoint
Properties:
FileSystemId:
Ref: FileSystemResource
PosixUser:
Uid: '1000'
Gid: '1000'
RootDirectory:
CreationInfo:
OwnerGid: '1000'
OwnerUid: '1000'
Permissions: '0755'
Path: /lambda
Outputs:
VPC:
Description: A reference to the created VPC
Value:
Ref: VPC
PublicSubnets:
Description: A list of the public subnets
Value:
Fn::Join:
- ','
- - Ref: PublicSubnet1
- Ref: PublicSubnet2
PublicSubnet1:
Description: A reference to the public subnet in the 1st Availability Zone
Value:
Ref: PublicSubnet1
PublicSubnet2:
Description: A reference to the public subnet in the 2nd Availability Zone
Value:
Ref: PublicSubnet2
DefaultSecurityGroup:
Description: Default Security group
Value:
Fn::GetAtt:
- VPC
- DefaultSecurityGroup
EfsFileSystem:
Description: EFS File System ID
Value:
Ref: FileSystemResource
EfsAccessPoint:
Description: EFS Access Point ID
Value:
Ref: AccessPointResource
VideosBucketName:
Description: S3 Video bucket name
Value:
Ref: VideosBucketName