-
Notifications
You must be signed in to change notification settings - Fork 2
/
template.yml
2913 lines (2905 loc) · 111 KB
/
template.yml
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
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
AWSTemplateFormatVersion: "2010-09-09"
Transform: AWS::Serverless-2016-10-31
Description: >-
Creates a Step Function state machine for processing user created content, as
well as some supporting resources
Conditions:
CreateProductionResources: !Equals [!Ref EnvironmentType, Production]
CreateSqsEventMapping: !Equals [!Ref EnableSqsJobExecution, "True"]
CreateDefaultEventBusRule: !Equals [!Ref EnableDefaultEventBusRule, "True"]
CreateOrganizationAccessPolicies: !Not [!Equals [!Ref OrganizationId, ""]]
Parameters:
# Generally set by the deploy pipeline
TranscodeEcsTaskDefinitionImage:
Type: String
FtpCopyEcsTaskDefinitionImage:
Type: String
# Optional
EnableSqsJobExecution:
Type: String
AllowedValues:
- "True"
- "False"
Default: "False"
EnableDefaultEventBusRule:
Type: String
AllowedValues:
- "True"
- "False"
Default: "True"
SubnetIPv4CidrBits:
Default: 14
Description: >-
The number of subnet bits for each subnet's IPv4 CIDR.
For example, a value of 8 will create CIDRs with a mask of "/24".
To calculate the required host bits for a given subnet bits, subtract the
subnet bits from 32 for IPv4.
Updating requires replacement of all subnets. When subnets are being
replaced the ranges of the new subnets cannot overlap those being
replaced.
MaxValue: 256
MinValue: 1
Type: Number
SubnetIPv6CidrBits:
Default: 64
Description: >-
The number of subnet bits for each subnet's IPv6 CIDR.
For example, a value of 64 will create CIDRs with a mask of "/64".
To calculate the required host bits for a given subnet bits, subtract the
subnet bits from 128 for IPv6.
Updating requires replacement of all subnets. When subnets are being
replaced the ranges of the new subnets cannot overlap those being
replaced.
MaxValue: 256
MinValue: 1
Type: Number
OrganizationId:
Type: String
Default: ""
# Required
EnvironmentType:
Type: String
AllowedValues:
- Testing
- Staging
- Production
EnvironmentTypeAbbreviation:
Type: String
AllowedValues:
- test
- stag
- prod
TranscodeJobNamePrefix:
Type: String
Resources:
# Managed IAM Policies
ArtifactBucketReadOnlyAccessPolicy:
Type: AWS::IAM::ManagedPolicy
Properties:
Description: >-
Provides read-only access to the artifact bucket for a particular
Porter deployment
PolicyDocument:
Statement:
- Action: s3:GetObject*
Effect: Allow
Resource: !Sub arn:aws:s3:::${ArtifactBucket}/*
Version: "2012-10-17"
ArtifactBucketWriteAccessPolicy:
Type: AWS::IAM::ManagedPolicy
Properties:
Description: >-
Provides limitedS S3 list and write access to the artifact bucket for a
particular Porter deployment
PolicyDocument:
Statement:
- Action: s3:ListBucketMultipartUploads
Effect: Allow
Resource: !Sub arn:aws:s3:::${ArtifactBucket}
- Action:
- s3:PutObject
- s3:AbortMultipartUpload
- s3:ListMultipartUploadParts
Effect: Allow
Resource: !Sub arn:aws:s3:::${ArtifactBucket}/*
Version: "2012-10-17"
# General-Purpose IAM Roles
S3DestinationWriterRole: # This resource name should not change. Changes will break existing bucket policies.
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
AWS:
- !GetAtt CopyLambdaIamRole.Arn
- !GetAtt ImageTransformLambdaIamRole.Arn
- !GetAtt WaveformLambdaIamRole.Arn
- !GetAtt WavWrapLambdaIamRole.Arn
- !GetAtt TranscriptionJobResultsLambdaIamRole.Arn
- !GetAtt CallbackLambdaIamRole.Arn
- !GetAtt TranscodeEcsTaskIamRole.Arn
Version: "2012-10-17"
ManagedPolicyArns:
# Calls to s3.copyObject need read access to the artifact bucket
- !Ref ArtifactBucketReadOnlyAccessPolicy
Policies:
# For cross-account S3 buckets, the IAM role needs the same
# permissions that the bucket policy grants to this role
- PolicyName: S3DestinationWritePolicy
PolicyDocument:
Statement:
- Action:
- s3:ListBucket
- s3:ListBucketMultipartUploads
- s3:PutObject*
- s3:AbortMultipartUpload
- s3:ListMultipartUploadParts
Effect: Allow
Resource: "*"
Version: "2012-10-17"
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
GCPStorageDestinationWriterRole: # This resource name should not change. Changes will break existing federation configurations.
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
AWS:
- !GetAtt CopyLambdaIamRole.Arn
- !GetAtt ImageTransformLambdaIamRole.Arn
- !GetAtt WavWrapLambdaIamRole.Arn
- !GetAtt TranscriptionJobResultsLambdaIamRole.Arn
- !GetAtt CallbackLambdaIamRole.Arn
- !GetAtt TranscodeEcsTaskIamRole.Arn
Version: "2012-10-17"
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
# SNS
## Messages sent to this topic will be handled by a Lambda function which
## executes the Step Functions state machine. The `input` to the state machine
## execution will be the body of the SNS message. The SNS message must be
## valic JSON.
JobExecutionSnsTopic:
Type: AWS::SNS::Topic
Properties:
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
JobExecutionSnsTopicPolicy:
Type: AWS::SNS::TopicPolicy
Condition: CreateOrganizationAccessPolicies
Properties:
PolicyDocument:
Id: OrganizationAcccessPolicy
Statement:
- Action: sns:Publish
Condition:
StringEquals:
aws:PrincipalOrgID: !Ref OrganizationId
Effect: Allow
Sid: OrganizationPublish
Principal:
AWS: "*"
Resource: !Ref JobExecutionSnsTopic
Version: "2012-10-17"
Topics:
- !Ref JobExecutionSnsTopic
JobExecutionSnsTopicLambdaFunction:
Type: AWS::Serverless::Function
Properties:
Architectures: [arm64]
CodeUri: src/lambdas/job-execution-sns/
Description: >-
Relays SNS messages sent to a subscribed topic to a State Machine
Environment:
Variables:
STATE_MACHINE_ARN: !Ref StateMachine
Events:
JobExecution:
Properties:
Topic: !Ref JobExecutionSnsTopic
Type: SNS
Handler: index.handler
Layers:
- !Ref AwsSdkJsV3LambdaLayer
MemorySize: 128
Policies:
- Statement:
- Action: states:StartExecution
Effect: Allow
Resource: !Ref StateMachine
Sid: AllowJobExecution
Version: "2012-10-17"
Runtime: nodejs22.x
Tags:
prx:meta:tagging-version: "2021-04-07"
prx:cloudformation:stack-name: !Ref AWS::StackName
prx:cloudformation:stack-id: !Ref AWS::StackId
prx:ops:environment: !Ref EnvironmentType
prx:dev:application: Porter
Timeout: 8
JobExecutionSnsTopicLambdaLogGroup:
Type: AWS::Logs::LogGroup
DeletionPolicy: Delete
UpdateReplacePolicy: Delete
Properties:
LogGroupName: !Sub /aws/lambda/${JobExecutionSnsTopicLambdaFunction}
RetentionInDays: 30
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
JobExecutionSnsTopicLambdaErrorAlarm:
Type: AWS::CloudWatch::Alarm
Condition: CreateProductionResources
Properties:
AlarmName: !Sub MAJOR [Porter] Job execution SNS Lambda <${EnvironmentTypeAbbreviation}> INVOCATION FAILED (${AWS::StackName})
AlarmDescription: !Sub >-
The AWS Lambda function resource subscribed to the ${EnvironmentType}
job execution SNS topic failed. This likely means that a job that was
sent to Porter did not reach the state machine.
ComparisonOperator: GreaterThanThreshold
EvaluationPeriods: 1
MetricName: Errors
Namespace: AWS/Lambda
Period: 60
Statistic: Sum
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
Threshold: 0
TreatMissingData: notBreaching
Dimensions:
- Name: FunctionName
Value: !Ref JobExecutionSnsTopicLambdaFunction
# SQS
## Messages sent to this queue will be handled by a Lambda function which
## executes the Step Functions state machine. The `input` to the state machine
## execution will be the body of the SQS message. The SQS message must be
## valic JSON.
JobExecutionSqsQueue:
Type: AWS::SQS::Queue
DeletionPolicy: Delete
UpdateReplacePolicy: Delete
Properties:
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
JobExecutionSqsQueueLambdaIamRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Version: "2012-10-17"
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
Policies:
- PolicyName: SqsPolicy
PolicyDocument:
Statement:
- Action:
- sqs:ChangeMessageVisibility
- sqs:DeleteMessage
- sqs:GetQueueAttributes
- sqs:ReceiveMessage
Effect: Allow
Resource: !GetAtt JobExecutionSqsQueue.Arn
Version: "2012-10-17"
- PolicyName: StepFunctionsPolicy
PolicyDocument:
Statement:
- Action: states:StartExecution
Effect: Allow
Resource: !Ref StateMachine
Version: "2012-10-17"
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
JobExecutionSqsQueueLambdaFunction:
Type: AWS::Serverless::Function
Properties:
Architectures: [arm64]
CodeUri: src/lambdas/job-execution-sqs/
Description: >-
Relays SQS messages sent to a subscribed queue to a State Machine
Environment:
Variables:
STATE_MACHINE_ARN: !Ref StateMachine
Events:
SqsTrigger:
Type: SQS
Properties:
Enabled: !If [CreateSqsEventMapping, true, false]
Queue: !GetAtt JobExecutionSqsQueue.Arn
Handler: index.handler
Layers:
- !Ref AwsSdkJsV3LambdaLayer
MemorySize: 128
Role: !GetAtt JobExecutionSqsQueueLambdaIamRole.Arn
Runtime: nodejs22.x
Tags:
prx:meta:tagging-version: "2021-04-07"
prx:cloudformation:stack-name: !Ref AWS::StackName
prx:cloudformation:stack-id: !Ref AWS::StackId
prx:ops:environment: !Ref EnvironmentType
prx:dev:application: Porter
Timeout: 8
JobExecutionSqsQueueLambdaLogGroup:
Type: AWS::Logs::LogGroup
DeletionPolicy: Delete
UpdateReplacePolicy: Delete
Properties:
LogGroupName: !Sub /aws/lambda/${JobExecutionSqsQueueLambdaFunction}
RetentionInDays: 30
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
JobExecutionSqsQueueLambdaErrorAlarm:
Type: AWS::CloudWatch::Alarm
Condition: CreateProductionResources
Properties:
AlarmName: !Sub MAJOR [Porter] Job execution SQS Lambda <${EnvironmentTypeAbbreviation}> INVOCATION FAILED (${AWS::StackName})
AlarmDescription: !Sub >-
The AWS Lambda function resource subscribed to the ${EnvironmentType}
job execution SQS queue failed. This likely means that a job that was
sent to Porter did not reach the state machine.
ComparisonOperator: GreaterThanThreshold
EvaluationPeriods: 1
MetricName: Errors
Namespace: AWS/Lambda
Period: 60
Statistic: Sum
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
Threshold: 0
TreatMissingData: notBreaching
Dimensions:
- Name: FunctionName
Value: !Ref JobExecutionSqsQueueLambdaFunction
# EventBridge
CustomEventBus:
Type: AWS::Events::EventBus
Properties:
Name: !Ref AWS::StackName
JobExecutionEventRuleIamRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: events.amazonaws.com
Version: "2012-10-17"
Policies:
- PolicyName: StepFunctionsPolicy
PolicyDocument:
Statement:
- Action: states:StartExecution
Effect: Allow
Resource: !Ref StateMachine
Version: "2012-10-17"
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
CustomEventBusJobExecutionEventRule:
Type: AWS::Events::Rule
Properties:
EventBusName: !Ref CustomEventBus
EventPattern:
detail-type:
- Porter Job Execution Submission
State: ENABLED
Targets:
- Arn: !Ref StateMachine
Id: !Sub ${AWS::StackName}-JobExecutionEventRule
InputPath: $.detail
RoleArn: !GetAtt JobExecutionEventRuleIamRole.Arn
DefaultEventBusJobExecutionEventRule:
Type: AWS::Events::Rule
Condition: CreateDefaultEventBusRule
Properties:
EventPattern:
detail-type:
- Porter Job Execution Submission
State: ENABLED
Targets:
- Arn: !Ref StateMachine
Id: !Sub ${AWS::StackName}-JobExecutionEventRule
InputPath: $.detail
RoleArn: !GetAtt JobExecutionEventRuleIamRole.Arn
# Transcode Job Watcher
# Transcode tasks are submitted async, but the state machine will wait for a
# task token to be sent back as part of a SendTaskSuccess or SendTaskFailure
# call. The job watcher function is triggered by changes to transcribe jobs,
# and sends the appropriate task result based on the result of the job, at
# which point the execution of the state machine will proceed.
TranscriptionJobStateChangeLambdaFunction:
Type: AWS::Serverless::Function
Properties:
Architectures: [arm64]
CodeUri: src/lambdas/transcription-job-state-change/
Description: Handles transcription job state change events
Environment:
Variables:
ARTIFACT_BUCKET_NAME: !Ref ArtifactBucket
TRANSCODE_JOB_NAME_PREFIX: !Ref TranscodeJobNamePrefix
Events:
TranscribeJobStateChange:
Properties:
Pattern:
detail:
TranscriptionJobStatus:
- COMPLETED
- FAILED
TranscriptionJobName:
- prefix: !Ref TranscodeJobNamePrefix
detail-type:
- Transcribe Job State Change
source:
- aws.transcribe
Target:
Id: !Sub ${AWS::StackName}.Transcribe-JobState
Type: EventBridgeRule
Handler: index.handler
MemorySize: 128
Policies:
- !Ref ArtifactBucketReadOnlyAccessPolicy
- Statement:
- Action:
- states:SendTaskFailure
- states:SendTaskSuccess
Effect: Allow
Resource: !Ref StateMachine
Sid: AllowSendTaskResults
Version: "2012-10-17"
Runtime: nodejs22.x
Tags:
prx:meta:tagging-version: "2021-04-07"
prx:cloudformation:stack-name: !Ref AWS::StackName
prx:cloudformation:stack-id: !Ref AWS::StackId
prx:ops:environment: !Ref EnvironmentType
prx:dev:application: Porter
Timeout: 4
TranscriptionJobStateChangeLambdaLogGroup:
Type: AWS::Logs::LogGroup
DeletionPolicy: Delete
UpdateReplacePolicy: Delete
Properties:
LogGroupName: !Sub /aws/lambda/${TranscriptionJobStateChangeLambdaFunction}
RetentionInDays: 30
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
TranscriptionJobStateChangeLambdaErrorAlarm:
Type: AWS::CloudWatch::Alarm
Condition: CreateProductionResources
Properties:
AlarmName: !Sub MINOR [Porter] Transcription state Lambda <${EnvironmentTypeAbbreviation}> INVOCATION FAILED (${AWS::StackName})
AlarmDescription: >-
The AWS Lambda function resource that watches for AWS Transcribe job
state changes failed. A Porter job could become stuck when this
happens, since it will wait a long time for the transcription to
complete
ComparisonOperator: GreaterThanThreshold
EvaluationPeriods: 1
MetricName: LambdaFunctionsFailed
Namespace: AWS/States
Period: 60
Statistic: Sum
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
Threshold: 0
TreatMissingData: notBreaching
Dimensions:
- Name: LambdaFunctionArn
Value: !GetAtt TranscriptionJobStateChangeLambdaFunction.Arn
##############################################################################
##############################################################################
##############################################################################
# ██╗ ██╗██████╗ ██████╗
# ██║ ██║██╔══██╗██╔════╝
# ██║ ██║██████╔╝██║
# ╚██╗ ██╔╝██╔═══╝ ██║
# ╚████╔╝ ██║ ╚██████╗
# ╚═══╝ ╚═╝ ╚═════╝
# VPC
VPC:
Type: AWS::EC2::VPC
Properties:
CidrBlock: 172.16.0.0/16
EnableDnsSupport: true
EnableDnsHostnames: true
InstanceTenancy: default
Tags:
- { Key: Name, Value: !Sub "${AWS::StackName}" }
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
# IPv6
IPv6VpcCidrBlock:
Type: AWS::EC2::VPCCidrBlock
Properties:
AmazonProvidedIpv6CidrBlock: true
VpcId: !Ref VPC
# DHCP
DhcpOptions:
Type: AWS::EC2::DHCPOptions
Properties:
DomainName: ec2.internal
DomainNameServers:
- AmazonProvidedDNS
Tags:
- { Key: Name, Value: !Sub "${AWS::StackName}" }
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
DhcpOptionsAssociation:
Type: AWS::EC2::VPCDHCPOptionsAssociation
Properties:
DhcpOptionsId: !Ref DhcpOptions
VpcId: !Ref VPC
# Internet gateway
InternetGateway:
Type: AWS::EC2::InternetGateway
Properties:
Tags:
- { Key: Name, Value: !Sub "${AWS::StackName}_public" }
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
VpcGatewayAttachment:
Type: AWS::EC2::VPCGatewayAttachment
Properties:
InternetGatewayId: !Ref InternetGateway
VpcId: !Ref VPC
# Routing for public subnets
PublicRouteTable:
Type: AWS::EC2::RouteTable
Properties:
Tags:
- { Key: Name, Value: !Sub "${AWS::StackName}_public" }
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
VpcId: !Ref VPC
IPv4Route:
DependsOn: VpcGatewayAttachment
Type: AWS::EC2::Route
Properties:
DestinationCidrBlock: 0.0.0.0/0
GatewayId: !Ref InternetGateway
RouteTableId: !Ref PublicRouteTable
IPv6Route:
Type: AWS::EC2::Route
Properties:
DestinationIpv6CidrBlock: ::/0
GatewayId: !Ref InternetGateway
RouteTableId: !Ref PublicRouteTable
# Public subnets
PublicSubnet1:
# DeletionPolicy: Retain
DependsOn: IPv6VpcCidrBlock
Type: AWS::EC2::Subnet
# UpdateReplacePolicy: Retain
Properties:
AvailabilityZone: !Select [0, !GetAZs ""]
CidrBlock: !Select [0, !Cidr [!GetAtt VPC.CidrBlock, 1, !Ref SubnetIPv4CidrBits]]
Ipv6CidrBlock: !Select [0, !Cidr [!Select [0, !GetAtt VPC.Ipv6CidrBlocks], 1, !Ref SubnetIPv6CidrBits]]
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
- Key: Name
Value:
Fn::Sub:
- ${AWS::StackName}_public-1_${ZoneName}
- ZoneName: !Select [0, !GetAZs ""]
VpcId: !Ref VPC
PublicSubnet1RouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PublicRouteTable
SubnetId: !Ref PublicSubnet1
PublicSubnet2:
# DeletionPolicy: Retain
DependsOn: IPv6VpcCidrBlock
Type: AWS::EC2::Subnet
# UpdateReplacePolicy: Retain
Properties:
AvailabilityZone: !Select [1, !GetAZs ""]
CidrBlock: !Select [1, !Cidr [!GetAtt VPC.CidrBlock, 2, !Ref SubnetIPv4CidrBits]]
Ipv6CidrBlock: !Select [1, !Cidr [!Select [0, !GetAtt VPC.Ipv6CidrBlocks], 2, !Ref SubnetIPv6CidrBits]]
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
- Key: Name
Value:
Fn::Sub:
- ${AWS::StackName}_public-2_${ZoneName}
- ZoneName: !Select [1, !GetAZs ""]
VpcId: !Ref VPC
PublicSubnet2RouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PublicRouteTable
SubnetId: !Ref PublicSubnet2
# ACL for public subnets
PublicSubnetNetworkAcl:
Type: AWS::EC2::NetworkAcl
Properties:
Tags:
- { Key: Name, Value: !Sub "${AWS::StackName}_public" }
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
VpcId: !Ref VPC
##
PublicSubnetIPv4AllowFtpControlConnectionOutboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: true
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 21
To: 21
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 100
PublicSubnetIPv6AllowFtpControlConnectionOutboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
Egress: true
Ipv6CidrBlock: ::/0
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 21
To: 21
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 101
##
PublicSubnetIPv4AllowFtpActiveDataConnectionOutboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: true
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 20
To: 20
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 110
PublicSubnetIPv6AllowFtpActiveDataConnectionOutboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
Egress: true
Ipv6CidrBlock: ::/0
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 20
To: 20
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 111
##
PublicSubnetIPv4AllowFtpPassiveDataConnectionOutboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: true
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 1024
To: 65535
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 102
PublicSubnetIPv6AllowFtpPassiveDataConnectionOutboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
Egress: true
Ipv6CidrBlock: ::/0
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 1024
To: 65535
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 103
##
PublicSubnetIPv4AllowSshOutboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: true
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 22
To: 22
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 114
PublicSubnetIPv6AllowSshOutboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
Egress: true
Ipv6CidrBlock: ::/0
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 22
To: 22
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 115
##
PublicSubnetIPv4AllowHttpsOutboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: true
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 443
To: 443
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 104
PublicSubnetIPv6AllowHttpsOutboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
Egress: true
Ipv6CidrBlock: ::/0
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 443
To: 443
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 105
##
PublicSubnetIPv4AllowFtpActiveDataConnectionInboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: false
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 32768
To: 61000
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 100
PublicSubnetIPv6AllowFtpActiveDataConnectionInboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
Egress: false
Ipv6CidrBlock: ::/0
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 62000
To: 62099
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 101
##
PublicSubnetIPv4AllowEphemeralInboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: false
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 32768
To: 61000
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 102
PublicSubnetIPv6AllowEphemeralInboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
Egress: false
Ipv6CidrBlock: ::/0
NetworkAclId: !Ref PublicSubnetNetworkAcl
PortRange:
From: 62000
To: 62099
Protocol: 6 # TCP
RuleAction: allow
RuleNumber: 103
##
PublicSubnet1NetworkAclAssociation:
Type: AWS::EC2::SubnetNetworkAclAssociation
Properties:
NetworkAclId: !Ref PublicSubnetNetworkAcl
SubnetId: !Ref PublicSubnet1
PublicSubnet2NetworkAclAssociation:
Type: AWS::EC2::SubnetNetworkAclAssociation
Properties:
NetworkAclId: !Ref PublicSubnetNetworkAcl
SubnetId: !Ref PublicSubnet2
# Routing for private subnets
PrivateRouteTable:
Type: AWS::EC2::RouteTable
Properties:
VpcId: !Ref VPC
Tags:
- { Key: Name, Value: !Sub "${AWS::StackName}_private" }
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
# Private subnets
PrivateSubnet1:
# DeletionPolicy: Retain
DependsOn: IPv6VpcCidrBlock
Type: AWS::EC2::Subnet
# UpdateReplacePolicy: Retain
Properties:
AvailabilityZone: !Select [0, !GetAZs ""]
CidrBlock: !Select [2, !Cidr [!GetAtt VPC.CidrBlock, 3, !Ref SubnetIPv4CidrBits]]
Ipv6CidrBlock: !Select [2, !Cidr [!Select [0, !GetAtt VPC.Ipv6CidrBlocks], 3, !Ref SubnetIPv6CidrBits]]
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
- Key: Name
Value:
Fn::Sub:
- ${AWS::StackName}_private-1_${ZoneName}
- ZoneName: !Select [0, !GetAZs ""]
VpcId: !Ref VPC
PrivateSubnet1RouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PrivateRouteTable
SubnetId: !Ref PrivateSubnet1
PrivateSubnet2:
# DeletionPolicy: Retain
DependsOn: IPv6VpcCidrBlock
Type: AWS::EC2::Subnet
# UpdateReplacePolicy: Retain
Properties:
AvailabilityZone: !Select [1, !GetAZs ""]
CidrBlock: !Select [3, !Cidr [!GetAtt VPC.CidrBlock, 4, !Ref SubnetIPv4CidrBits]]
Ipv6CidrBlock: !Select [3, !Cidr [!Select [0, !GetAtt VPC.Ipv6CidrBlocks], 4, !Ref SubnetIPv6CidrBits]]
Tags:
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
- Key: Name
Value:
Fn::Sub:
- ${AWS::StackName}_private-2_${ZoneName}
- ZoneName: !Select [1, !GetAZs ""]
VpcId: !Ref VPC
PrivateSubnet2RouteTableAssociation:
Type: AWS::EC2::SubnetRouteTableAssociation
Properties:
RouteTableId: !Ref PrivateRouteTable
SubnetId: !Ref PrivateSubnet2
# ACL for private subnets
# Private subnets allow all inbound and outbound traffic
PrivateSubnetNetworkAcl:
Type: AWS::EC2::NetworkAcl
Properties:
Tags:
- { Key: Name, Value: !Sub "${AWS::StackName}_private" }
- { Key: prx:meta:tagging-version, Value: "2021-04-07" }
- { Key: prx:cloudformation:stack-name, Value: !Ref AWS::StackName }
- { Key: prx:cloudformation:stack-id, Value: !Ref AWS::StackId }
- { Key: prx:ops:environment, Value: !Ref EnvironmentType }
- { Key: prx:dev:application, Value: Porter }
VpcId: !Ref VPC
##
PrivateSubnetIPv4AllowAllInboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: false
NetworkAclId: !Ref PrivateSubnetNetworkAcl
Protocol: -1 # All
RuleAction: allow
RuleNumber: 100
PrivateSubnetIPv6AllowAllInboundTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
Egress: false
Ipv6CidrBlock: ::/0
NetworkAclId: !Ref PrivateSubnetNetworkAcl
Protocol: -1 # All
RuleAction: allow
RuleNumber: 101
##
PrivateSubnetIPv4AllowAllOutboudTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
CidrBlock: 0.0.0.0/0
Egress: true
NetworkAclId: !Ref PrivateSubnetNetworkAcl
Protocol: -1 # All
RuleAction: allow
RuleNumber: 100
PrivateSubnetIPv6AllowAllOutboudTrafficNetworkAclEntry:
Type: AWS::EC2::NetworkAclEntry
Properties:
Egress: true