-
Notifications
You must be signed in to change notification settings - Fork 7
/
template.yaml
394 lines (351 loc) · 11.4 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
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: LICENSE
ReadmeUrl: README.md
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:
- !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: layers/ffmpeg_layer
CompatibleRuntimes:
- python3.8
- python3.7
- python3.6
TriggerFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: functions/trigger_statemachine_function/
Handler: app.lambda_handler
Policies:
- S3ReadPolicy:
BucketName: !Ref VideosBucketName
- DynamoDBWritePolicy:
TableName: !Ref JobTable
- StepFunctionsExecutionPolicy:
StateMachineName: !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: statemachines/main.asl.json
Tracing:
Enabled: True
DefinitionSubstitutions:
ControllerFunctionArn: !GetAtt ControllerFunction.Arn
TranscodeVideoFunctionArn: !GetAtt TranscodeVideoFunction.Arn
MergeVideoFunctionArn: !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: functions/controller_function/
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:
- !GetAtt VPC.DefaultSecurityGroup
SubnetIds:
- !Ref PublicSubnet1
- !Ref PublicSubnet2
FileSystemConfigs:
- Arn: !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: functions/transcode_video_function/
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:
- !GetAtt VPC.DefaultSecurityGroup
SubnetIds:
- !Ref PublicSubnet1
- !Ref PublicSubnet2
FileSystemConfigs:
- Arn: !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: functions/merge_video_function/
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:
- !GetAtt VPC.DefaultSecurityGroup
SubnetIds:
- !Ref PublicSubnet1
- !Ref PublicSubnet2
FileSystemConfigs:
- Arn: !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: !Select [ 0, !GetAZs '' ]
CidrBlock: !Ref PublicSubnet1CIDR
MapPublicIpOnLaunch: true
Tags:
- Key: Name
Value: !Sub ${EnvironmentName} Public Subnet (AZ1)
PublicSubnet2:
Type: AWS::EC2::Subnet
Properties:
VpcId: !Ref VPC
AvailabilityZone: !Select [ 1, !GetAZs '' ]
CidrBlock: !Ref PublicSubnet2CIDR
MapPublicIpOnLaunch: true
Tags:
- Key: Name
Value: !Sub ${EnvironmentName} Public Subnet (AZ2)
PublicRouteTable:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref VPC
Tags:
- Key: Name
Value: !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: !Sub 'com.amazonaws.${AWS::Region}.s3'
VpcId: !Ref VPC
EndpointDDB:
Type: 'AWS::EC2::VPCEndpoint'
Properties:
RouteTableIds: [!Ref PublicRouteTable]
ServiceName: !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:
- !GetAtt VPC.DefaultSecurityGroup
MountTargetResource2:
Type: AWS::EFS::MountTarget
Properties:
FileSystemId: !Ref FileSystemResource
SubnetId: !Ref PublicSubnet2
SecurityGroups:
- !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: !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: !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