-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathserverless.yml
1227 lines (1107 loc) · 36.9 KB
/
serverless.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
org: meemalabs # you should edit this value for your own use
app: cardano
service: "meema-stake-pools"
useDotenv: true
configValidationMode: error
provider:
name: aws
# possible values are: `testnet`, `mainnet`, and `guild`
stage: ${opt:stage, "testnet"}
region: "us-east-1"
resources:
Description: "Meema's Cardano Stake Pool environment"
Metadata:
"AWS::CloudFormation::Interface":
ParameterGroups:
- Label:
default: "VPC Parameters"
Parameters:
- ClassB
- Label:
default: "Alert Parameters"
Parameters:
- Email
- HttpsEndpoint
- Label:
default: "Fallback Parameters"
Parameters:
- FallbackEmail
Parameters:
ClassB:
Description: "Class B of VPC (10.XXX.0.0/16)"
Type: Number
Default: 0
ConstraintDescription: "Must be in the range [0-255]"
MinValue: 0
MaxValue: 255
# The following params are needed for our alerting logic
Email:
Description: "Optional email address that will receive alerts."
Type: String
Default: "${env:ALERT_EMAIL}"
FallbackEmail:
Description: "Optional email address that will receive alerts if alerts can not be delivered."
Type: String
Default: "${env:ALERT_FALLBACK_EMAIL}"
HttpsEndpoint:
Description: "Optional HTTPS endpoint that will receive alerts via POST requests (e.g., a marbot.io endpoint for incident management in Slack)."
Type: String
Default: "${env:ALERT_HTTPS_ENDPOINT}"
Conditions:
# these conditions are used to determine the "alert" channel
HasEmail: !Not [!Equals [!Ref Email, ""]]
HasHttpsEndpoint: !Not [!Equals [!Ref HttpsEndpoint, ""]]
HasFallbackEmail: !Not [!Equals [!Ref FallbackEmail, ""]]
Resources:
AllowRelayElasticIp:
Type: AWS::IAM::ManagedPolicy
Properties:
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- "ec2:DescribeAddresses"
- "ec2:AllocateAddress"
- "ec2:DescribeInstances"
- "ec2:AssociateAddress"
Resource: "*"
RootRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- ec2.amazonaws.com
Action:
- "sts:AssumeRole"
ManagedPolicyArns:
- !Ref AllowRelayElasticIp
RoleName: relay_elasticip
EC2EIP:
Type: "AWS::IAM::InstanceProfile"
Properties:
Path: "/"
Roles:
- Ref: "RootRole"
# these resources are needed for our "system alerts," e.g. downtime, computing, pricing alerts, etc.
Topic:
Type: "AWS::SNS::Topic"
Properties: {}
TopicPolicy:
Type: "AWS::SNS::TopicPolicy"
Properties:
PolicyDocument:
Id: Id1
Version: "2012-10-17"
Statement:
- Sid: Sid1
Effect: Allow
Principal:
Service:
- "events.amazonaws.com" # Allow CloudWatch Events
- "budgets.amazonaws.com" # Allow Budget Notifications
- "rds.amazonaws.com" # Allow RDS Events
- "s3.amazonaws.com" # Allow S3 Event Notifications
- "backup.amazonaws.com" # Allow Backup Events
- "codestar-notifications.amazonaws.com" # Allow CodeStart Notifications
Action: "sns:Publish"
Resource: !Ref Topic
- Sid: Sid2
Effect: Allow
Principal:
AWS: "*" # Allow CloudWatch Alarms, ElastiCache Notifications, Elastic Beanstalk Notifications, Auto Scaling Notification
Action: "sns:Publish"
Resource: !Ref Topic
Condition:
StringEquals:
"AWS:SourceOwner": !Ref "AWS::AccountId"
- Sid: Sid3
Effect: Allow
Principal:
Service: "ses.amazonaws.com" # Allow SES Notifications & Events
Action: "sns:Publish"
Resource: !Ref Topic
Condition:
StringEquals:
"AWS:Referer": !Ref "AWS::AccountId"
Topics:
- !Ref Topic
FallbackTopic:
Type: "AWS::SNS::Topic"
Properties: {}
NumberOfNotificationsFailedTooHighAlarm:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Alerts could not be delivered"
Namespace: "AWS/SNS"
MetricName: NumberOfNotificationsFailed
Statistic: Sum
Period: 60
EvaluationPeriods: 1
ComparisonOperator: GreaterThanThreshold
Threshold: 0
AlarmActions:
- !Ref FallbackTopic
Dimensions:
- Name: TopicName
Value: !GetAtt Topic.TopicName
TreatMissingData: notBreaching
EmailSubscription:
Condition: HasEmail
Type: "AWS::SNS::Subscription"
Properties:
Endpoint: !Ref Email
Protocol: email
TopicArn: !Ref Topic
HttpsEndpointSubscription:
Condition: HasHttpsEndpoint
Type: "AWS::SNS::Subscription"
Properties:
DeliveryPolicy:
healthyRetryPolicy:
minDelayTarget: 1
maxDelayTarget: 60
numRetries: 100
numNoDelayRetries: 0
backoffFunction: exponential
throttlePolicy:
maxReceivesPerSecond: 1
Endpoint: !Ref HttpsEndpoint
Protocol: https
TopicArn: !Ref Topic
FallbackEmailSubscription:
Condition: HasFallbackEmail
Type: "AWS::SNS::Subscription"
Properties:
Endpoint: !Ref FallbackEmail
Protocol: email
TopicArn: !Ref FallbackTopic
RecoveryAlarmBlockProducer:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Recovering instance when underlying hardware fails."
Namespace: "AWS/EC2"
MetricName: StatusCheckFailed_System
Statistic: Minimum
Period: 60
EvaluationPeriods: 5
ComparisonOperator: GreaterThanThreshold
Threshold: 0
AlarmActions:
- !Sub "arn:aws:automate:${AWS::Region}:ec2:recover"
Dimensions:
- Name: InstanceId
Value: !Ref BlockProducerNode
RecoveryAlarmRelay1:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Recovering instance when underlying hardware fails."
Namespace: "AWS/EC2"
MetricName: StatusCheckFailed_System
Statistic: Minimum
Period: 60
EvaluationPeriods: 5
ComparisonOperator: GreaterThanThreshold
Threshold: 0
AlarmActions:
- !Sub "arn:aws:automate:${AWS::Region}:ec2:recover"
Dimensions:
- Name: InstanceId
Value: !Ref RelayNode1
RecoveryAlarmRelay2:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Recovering instance when underlying hardware fails."
Namespace: "AWS/EC2"
MetricName: StatusCheckFailed_System
Statistic: Minimum
Period: 60
EvaluationPeriods: 5
ComparisonOperator: GreaterThanThreshold
Threshold: 0
AlarmActions:
- !Sub "arn:aws:automate:${AWS::Region}:ec2:recover"
Dimensions:
- Name: InstanceId
Value: !Ref RelayNode2
CPUTooHighAlarmBlockProducer:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Average CPU utilization over last 10 minutes higher than 80%"
Namespace: "AWS/EC2"
MetricName: CPUUtilization
Statistic: Average
Period: 600
EvaluationPeriods: 1
ComparisonOperator: GreaterThanThreshold
Threshold: 80
AlarmActions:
- !Ref Topic
Dimensions:
- Name: InstanceId
Value: !Ref BlockProducerNode
CPUTooHighAlarmRelay1:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Average CPU utilization over last 10 minutes higher than 80%"
Namespace: "AWS/EC2"
MetricName: CPUUtilization
Statistic: Average
Period: 600
EvaluationPeriods: 1
ComparisonOperator: GreaterThanThreshold
Threshold: 80
AlarmActions:
- !Ref Topic
Dimensions:
- Name: InstanceId
Value: !Ref RelayNode1
CPUTooHighAlarmRelay2:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Average CPU utilization over last 10 minutes higher than 80%"
Namespace: "AWS/EC2"
MetricName: CPUUtilization
Statistic: Average
Period: 600
EvaluationPeriods: 1
ComparisonOperator: GreaterThanThreshold
Threshold: 80
AlarmActions:
- !Ref Topic
Dimensions:
- Name: InstanceId
Value: !Ref RelayNode2
MemoryTooHighAlarmBlockProducer:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Average memory utilization over last 10 minutes higher than 80%"
Namespace: !Ref "AWS::StackName"
MetricName: mem_used_percent
Statistic: Average
Period: 600
EvaluationPeriods: 1
ComparisonOperator: GreaterThanThreshold
Threshold: 80
AlarmActions:
- !Ref Topic
Dimensions:
- Name: InstanceId
Value: !Ref BlockProducerNode
MemoryTooHighAlarmRelay1:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Average memory utilization over last 10 minutes higher than 80%"
Namespace: !Ref "AWS::StackName"
MetricName: mem_used_percent
Statistic: Average
Period: 600
EvaluationPeriods: 1
ComparisonOperator: GreaterThanThreshold
Threshold: 80
AlarmActions:
- !Ref Topic
Dimensions:
- Name: InstanceId
Value: !Ref RelayNode1
MemoryTooHighAlarmRelay2:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Average memory utilization over last 10 minutes higher than 80%"
Namespace: !Ref "AWS::StackName"
MetricName: mem_used_percent
Statistic: Average
Period: 600
EvaluationPeriods: 1
ComparisonOperator: GreaterThanThreshold
Threshold: 80
AlarmActions:
- !Ref Topic
Dimensions:
- Name: InstanceId
Value: !Ref RelayNode2
DiskTooHighAlarmBlockProducer:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Average disk utilization over last 10 minutes higher than 80%"
Namespace: !Ref "AWS::StackName"
MetricName: disk_used_percent
Statistic: Average
Period: 600
EvaluationPeriods: 1
ComparisonOperator: GreaterThanThreshold
Threshold: 80
AlarmActions:
- !Ref Topic
Dimensions:
- Name: InstanceId
Value: !Ref BlockProducerNode
- Name: fstype
Value: xfs
- Name: path
Value: "/"
DiskTooHighAlarmRelay1:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Average disk utilization over last 10 minutes higher than 80%"
Namespace: !Ref "AWS::StackName"
MetricName: disk_used_percent
Statistic: Average
Period: 600
EvaluationPeriods: 1
ComparisonOperator: GreaterThanThreshold
Threshold: 80
AlarmActions:
- !Ref Topic
Dimensions:
- Name: InstanceId
Value: !Ref RelayNode1
- Name: fstype
Value: xfs
- Name: path
Value: "/"
DiskTooHighAlarmRelay2:
Type: "AWS::CloudWatch::Alarm"
Properties:
AlarmDescription: "Average disk utilization over last 10 minutes higher than 80%"
Namespace: !Ref "AWS::StackName"
MetricName: disk_used_percent
Statistic: Average
Period: 600
EvaluationPeriods: 1
ComparisonOperator: GreaterThanThreshold
Threshold: 80
AlarmActions:
- !Ref Topic
Dimensions:
- Name: InstanceId
Value: !Ref RelayNode2
- Name: fstype
Value: xfs
- Name: path
Value: "/"
VPC:
Type: "AWS::EC2::VPC"
Properties:
CidrBlock: !Sub "10.${ClassB}.0.0/16"
EnableDnsSupport: true
EnableDnsHostnames: true
InstanceTenancy: default
BlockProducerNodeIp:
Type: AWS::EC2::EIP
Properties:
Domain: vpc
Tags:
- Key: Name
Value: "block-producer-ip"
RelayNode1Ip:
Type: AWS::EC2::EIP
Properties:
Domain: vpc
Tags:
- Key: Name
Value: "relay-node-1-ip"
RelayNode2Ip:
Type: AWS::EC2::EIP
Properties:
Domain: vpc
Tags:
- Key: Name
Value: "relay-node-2-ip"
BlockProducerNodeIpAssociation:
Type: AWS::EC2::EIPAssociation
Properties:
InstanceId: !Ref 'BlockProducerNode'
EIP: !Ref 'BlockProducerNodeIp'
RelayNode1IpAssociation:
Type: AWS::EC2::EIPAssociation
Properties:
InstanceId: !Ref "RelayNode1"
EIP: !Ref "RelayNode1Ip"
RelayNode2IpAssociation:
Type: AWS::EC2::EIPAssociation
Properties:
InstanceId: !Ref 'RelayNode2'
EIP: !Ref 'RelayNode2Ip'
VPCCidrBlock:
Type: "AWS::EC2::VPCCidrBlock"
Properties:
AmazonProvidedIpv6CidrBlock: true
VpcId: !Ref VPC
InternetGateway:
Type: "AWS::EC2::InternetGateway"
EgressOnlyInternetGateway:
Type: "AWS::EC2::EgressOnlyInternetGateway"
Properties:
VpcId: !Ref VPC
GatewayToInternet:
Type: "AWS::EC2::VPCGatewayAttachment"
Properties:
VpcId: !Ref VPC
InternetGatewayId: !Ref InternetGateway
SubnetAPublic:
DependsOn: VPCCidrBlock
Type: "AWS::EC2::Subnet"
Properties:
#AssignIpv6AddressOnCreation: true
AvailabilityZone: !Select [0, !GetAZs ""]
CidrBlock: !Sub "10.${ClassB}.0.0/20"
Ipv6CidrBlock:
!Select [0, !Cidr [!Select [0, !GetAtt "VPC.Ipv6CidrBlocks"], 6, 64]]
MapPublicIpOnLaunch: true
VpcId: !Ref VPC
Tags:
- Key: Reach
Value: public
SubnetAPrivate:
DependsOn: VPCCidrBlock
Type: "AWS::EC2::Subnet"
Properties:
AssignIpv6AddressOnCreation: false
AvailabilityZone: !Select [0, !GetAZs ""]
CidrBlock: !Sub "10.${ClassB}.16.0/20"
Ipv6CidrBlock:
!Select [1, !Cidr [!Select [0, !GetAtt "VPC.Ipv6CidrBlocks"], 6, 64]]
VpcId: !Ref VPC
Tags:
- Key: Reach
Value: private
SubnetBPublic:
DependsOn: VPCCidrBlock
Type: "AWS::EC2::Subnet"
Properties:
#AssignIpv6AddressOnCreation: true
AvailabilityZone: !Select [1, !GetAZs ""]
CidrBlock: !Sub "10.${ClassB}.32.0/20"
Ipv6CidrBlock:
!Select [2, !Cidr [!Select [0, !GetAtt "VPC.Ipv6CidrBlocks"], 6, 64]]
MapPublicIpOnLaunch: true
VpcId: !Ref VPC
Tags:
- Key: Reach
Value: public
SubnetBPrivate:
DependsOn: VPCCidrBlock
Type: "AWS::EC2::Subnet"
Properties:
AssignIpv6AddressOnCreation: false
AvailabilityZone: !Select [1, !GetAZs ""]
CidrBlock: !Sub "10.${ClassB}.48.0/20"
Ipv6CidrBlock:
!Select [3, !Cidr [!Select [0, !GetAtt "VPC.Ipv6CidrBlocks"], 6, 64]]
VpcId: !Ref VPC
Tags:
- Key: Reach
Value: private
SubnetCPublic:
DependsOn: VPCCidrBlock
Type: "AWS::EC2::Subnet"
Properties:
#AssignIpv6AddressOnCreation: true
AvailabilityZone: !Select [2, !GetAZs ""]
CidrBlock: !Sub "10.${ClassB}.64.0/20"
Ipv6CidrBlock:
!Select [4, !Cidr [!Select [0, !GetAtt "VPC.Ipv6CidrBlocks"], 6, 64]]
MapPublicIpOnLaunch: true
VpcId: !Ref VPC
Tags:
- Key: Reach
Value: public
SubnetCPrivate:
DependsOn: VPCCidrBlock
Type: "AWS::EC2::Subnet"
Properties:
AssignIpv6AddressOnCreation: false
AvailabilityZone: !Select [2, !GetAZs ""]
CidrBlock: !Sub "10.${ClassB}.80.0/20"
Ipv6CidrBlock:
!Select [5, !Cidr [!Select [0, !GetAtt "VPC.Ipv6CidrBlocks"], 6, 64]]
VpcId: !Ref VPC
Tags:
- Key: Reach
Value: private
RouteTablePublic:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
RouteTablePrivate:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
RouteTableBPublic:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
RouteTableBPrivate:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
RouteTableCPublic:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
RouteTableCPrivate:
Type: "AWS::EC2::RouteTable"
Properties:
VpcId: !Ref VPC
RouteTableAssociationAPublic:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
SubnetId: !Ref SubnetAPublic
RouteTableId: !Ref RouteTablePublic
RouteTableAssociationAPrivate:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
SubnetId: !Ref SubnetAPrivate
RouteTableId: !Ref RouteTablePrivate
RouteTableAssociationBPublic:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
SubnetId: !Ref SubnetBPublic
RouteTableId: !Ref RouteTableBPublic
RouteTableAssociationBPrivate:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
SubnetId: !Ref SubnetBPrivate
RouteTableId: !Ref RouteTableBPrivate
RouteTableAssociationCPublic:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
SubnetId: !Ref SubnetCPublic
RouteTableId: !Ref RouteTableCPublic
RouteTableAssociationCPrivate:
Type: "AWS::EC2::SubnetRouteTableAssociation"
Properties:
SubnetId: !Ref SubnetCPrivate
RouteTableId: !Ref RouteTableCPrivate
RouteTablePublicInternetRoute: # should be RouteTablePublicAInternetRoute, but logical id was not changed for backward compatibility
Type: "AWS::EC2::Route"
DependsOn: GatewayToInternet
Properties:
RouteTableId: !Ref RouteTablePublic
DestinationCidrBlock: "0.0.0.0/0"
GatewayId: !Ref InternetGateway
RouteTablePublicAInternetRouteIPv6:
Type: "AWS::EC2::Route"
DependsOn: GatewayToInternet
Properties:
RouteTableId: !Ref RouteTablePublic
DestinationIpv6CidrBlock: "::/0"
GatewayId: !Ref InternetGateway
RouteTablePrivateAInternetRouteIPv6:
Type: "AWS::EC2::Route"
Properties:
RouteTableId: !Ref RouteTablePrivate
DestinationIpv6CidrBlock: "::/0"
EgressOnlyInternetGatewayId: !Ref EgressOnlyInternetGateway
RouteTablePublicBInternetRoute:
Type: "AWS::EC2::Route"
DependsOn: GatewayToInternet
Properties:
RouteTableId: !Ref RouteTableBPublic
DestinationCidrBlock: "0.0.0.0/0"
GatewayId: !Ref InternetGateway
RouteTablePublicBInternetRouteIPv6:
Type: "AWS::EC2::Route"
DependsOn: GatewayToInternet
Properties:
RouteTableId: !Ref RouteTableBPublic
DestinationIpv6CidrBlock: "::/0"
GatewayId: !Ref InternetGateway
RouteTablePrivateBInternetRouteIPv6:
Type: "AWS::EC2::Route"
Properties:
RouteTableId: !Ref RouteTableBPrivate
DestinationIpv6CidrBlock: "::/0"
EgressOnlyInternetGatewayId: !Ref EgressOnlyInternetGateway
RouteTablePublicCInternetRoute:
Type: "AWS::EC2::Route"
DependsOn: GatewayToInternet
Properties:
RouteTableId: !Ref RouteTableCPublic
DestinationCidrBlock: "0.0.0.0/0"
GatewayId: !Ref InternetGateway
RouteTablePublicCInternetRouteIPv6:
Type: "AWS::EC2::Route"
DependsOn: GatewayToInternet
Properties:
RouteTableId: !Ref RouteTableCPublic
DestinationIpv6CidrBlock: "::/0"
GatewayId: !Ref InternetGateway
RouteTablePrivateCInternetRouteIPv6:
Type: "AWS::EC2::Route"
Properties:
RouteTableId: !Ref RouteTableCPrivate
DestinationIpv6CidrBlock: "::/0"
EgressOnlyInternetGatewayId: !Ref EgressOnlyInternetGateway
NetworkAclPublic:
Type: "AWS::EC2::NetworkAcl"
Properties:
VpcId: !Ref VPC
Tags:
- Key: Name
Value: Public
NetworkAclPrivate:
Type: "AWS::EC2::NetworkAcl"
Properties:
VpcId: !Ref VPC
SubnetNetworkAclAssociationAPublic:
Type: "AWS::EC2::SubnetNetworkAclAssociation"
Properties:
SubnetId: !Ref SubnetAPublic
NetworkAclId: !Ref NetworkAclPublic
SubnetNetworkAclAssociationAPrivate:
Type: "AWS::EC2::SubnetNetworkAclAssociation"
Properties:
SubnetId: !Ref SubnetAPrivate
NetworkAclId: !Ref NetworkAclPrivate
SubnetNetworkAclAssociationBPublic:
Type: "AWS::EC2::SubnetNetworkAclAssociation"
Properties:
SubnetId: !Ref SubnetBPublic
NetworkAclId: !Ref NetworkAclPublic
SubnetNetworkAclAssociationBPrivate:
Type: "AWS::EC2::SubnetNetworkAclAssociation"
Properties:
SubnetId: !Ref SubnetBPrivate
NetworkAclId: !Ref NetworkAclPrivate
SubnetNetworkAclAssociationCPublic:
Type: "AWS::EC2::SubnetNetworkAclAssociation"
Properties:
SubnetId: !Ref SubnetCPublic
NetworkAclId: !Ref NetworkAclPublic
SubnetNetworkAclAssociationCPrivate:
Type: "AWS::EC2::SubnetNetworkAclAssociation"
Properties:
SubnetId: !Ref SubnetCPrivate
NetworkAclId: !Ref NetworkAclPrivate
NetworkAclEntryInPublicAllowAll:
Type: "AWS::EC2::NetworkAclEntry"
Properties:
NetworkAclId: !Ref NetworkAclPublic
RuleNumber: 99
Protocol: -1
RuleAction: allow
Egress: false
CidrBlock: "0.0.0.0/0"
NetworkAclEntryInPublicAllowAllIPv6:
Type: "AWS::EC2::NetworkAclEntry"
Properties:
NetworkAclId: !Ref NetworkAclPublic
RuleNumber: 98
Protocol: -1
RuleAction: allow
Egress: false
Ipv6CidrBlock: "::/0"
NetworkAclEntryOutPublicAllowAll:
Type: "AWS::EC2::NetworkAclEntry"
Properties:
NetworkAclId: !Ref NetworkAclPublic
RuleNumber: 99
Protocol: -1
RuleAction: allow
Egress: true
CidrBlock: "0.0.0.0/0"
NetworkAclEntryOutPublicAllowAllIPv6:
Type: "AWS::EC2::NetworkAclEntry"
Properties:
NetworkAclId: !Ref NetworkAclPublic
RuleNumber: 98
Protocol: -1
RuleAction: allow
Egress: true
Ipv6CidrBlock: "::/0"
NetworkAclEntryInPrivateAllowAll:
Type: "AWS::EC2::NetworkAclEntry"
Properties:
NetworkAclId: !Ref NetworkAclPrivate
RuleNumber: 99
Protocol: -1
RuleAction: allow
Egress: false
CidrBlock: "0.0.0.0/0"
NetworkAclEntryInPrivateAllowAllIPv6:
Type: "AWS::EC2::NetworkAclEntry"
Properties:
NetworkAclId: !Ref NetworkAclPrivate
RuleNumber: 98
Protocol: -1
RuleAction: allow
Egress: false
Ipv6CidrBlock: "::/0"
NetworkAclEntryOutPrivateAllowAll:
Type: "AWS::EC2::NetworkAclEntry"
Properties:
NetworkAclId: !Ref NetworkAclPrivate
RuleNumber: 99
Protocol: -1
RuleAction: allow
Egress: true
CidrBlock: "0.0.0.0/0"
NetworkAclEntryOutPrivateAllowAllIPv6:
Type: "AWS::EC2::NetworkAclEntry"
Properties:
NetworkAclId: !Ref NetworkAclPrivate
RuleNumber: 98
Protocol: -1
RuleAction: allow
Egress: true
Ipv6CidrBlock: "::/0"
BlockProducerNode:
Type: AWS::EC2::Instance
DependsOn: GatewayToInternet
Properties:
ImageId: ${env:AWS_EC2_IMAGE_ID}
InstanceInitiatedShutdownBehavior: stop
InstanceType: ${env:AWS_EC2_INSTANCE_TYPE} # t3a.xlarge
KeyName: ${env:AWS_KEY_NAME}
Monitoring: true
BlockDeviceMappings:
- DeviceName: /dev/sda1
Ebs:
DeleteOnTermination: true
# Encrypted: true
SnapshotId: snap-0a52a8f51496c3782
VolumeSize: ${env:AWS_EC2_STORAGE}
VolumeType: gp2
NetworkInterfaces:
- GroupSet:
- Ref: BlockProducerNodeSecurityGroup
DeviceIndex: "0"
DeleteOnTermination: "true"
SubnetId:
Ref: SubnetAPublic # TODO: this should be a private subnet once done fully testing
# https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/quickref-general.html#scenario-one-pseudo-parameter
UserData:
Fn::Base64: !Sub |
#!/bin/bash
mkdir /home/ubuntu/git
cd /home/ubuntu/git
git clone ${env:GIT_REPO_URL} cardano-stake-pool-aws
cp ./cardano-stake-pool-aws/config/node-config /home/ubuntu/.node-config
cd /home/ubuntu
sed -i ./.node-config -e "s/SSH_PORT=/SSH_PORT=${env:SSH_PORT}/g"
sed -i ./.node-config -e "s/IS_RELAY_NODE=/IS_RELAY_NODE=false/g"
sed -i ./.node-config -e "s/BLOCK_PRODUCER_NODE_IP=/BLOCK_PRODUCER_NODE_IP=${BlockProducerNodeIp}/g"
sed -i ./.node-config -e "s/RELAY_NODE_1_IP=/RELAY_NODE_1_IP=${RelayNode1Ip}/g"
sed -i ./.node-config -e "s/RELAY_NODE_2_IP=/RELAY_NODE_2_IP=${RelayNode2Ip}/g"
chmod +x ./git/cardano-stake-pool-aws/scripts/*
chmod +x ./git/cardano-stake-pool-aws/build/*
cd ./git/cardano-stake-pool-aws/build
su ubuntu -c './build.sh'
Tags:
- Key: Name
Value: "cardano-block-producer-${self:provider.stage}"
RelayNode1:
Type: AWS::EC2::Instance
DependsOn: GatewayToInternet
Properties:
ImageId: ${env:AWS_EC2_IMAGE_ID}
InstanceInitiatedShutdownBehavior: stop
InstanceType: ${env:AWS_EC2_INSTANCE_TYPE} # t3a.xlarge
KeyName: ${env:AWS_KEY_NAME}
Monitoring: true
BlockDeviceMappings:
- DeviceName: /dev/sda1
Ebs:
DeleteOnTermination: true
# Encrypted: true
SnapshotId: snap-0a52a8f51496c3782
VolumeSize: ${env:AWS_EC2_STORAGE}
VolumeType: gp2
NetworkInterfaces:
- GroupSet:
- Ref: RelayNodeSecurityGroup
DeviceIndex: "0"
DeleteOnTermination: "true"
SubnetId:
Ref: SubnetAPublic
# https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/quickref-general.html#scenario-one-pseudo-parameter
UserData:
Fn::Base64: !Sub |
#!/bin/bash
mkdir /home/ubuntu/git
cd /home/ubuntu/git
git clone ${env:GIT_REPO_URL} cardano-stake-pool-aws
cp ./cardano-stake-pool-aws/config/node-config /home/ubuntu/.node-config
cd /home/ubuntu
sed -i ./.node-config -e "s/SSH_PORT=/SSH_PORT=${env:SSH_PORT}/g"
sed -i ./.node-config -e "s/IS_RELAY_NODE=/IS_RELAY_NODE=true/g"
sed -i ./.node-config -e "s/BLOCK_PRODUCER_NODE_IP=/BLOCK_PRODUCER_NODE_IP=${BlockProducerNodeIp}/g"
sed -i ./.node-config -e "s/RELAY_NODE_1_IP=/RELAY_NODE_1_IP=${RelayNode1Ip}/g"
sed -i ./.node-config -e "s/RELAY_NODE_2_IP=/RELAY_NODE_2_IP=${RelayNode2Ip}/g"
chmod +x ./git/cardano-stake-pool-aws/scripts/*
chmod +x ./git/cardano-stake-pool-aws/build/*
cd ./git/cardano-stake-pool-aws/build
su ubuntu -c './build.sh'
Tags:
- Key: Name
Value: "cardano-relay-node-1-${self:provider.stage}"
RelayNode2:
Type: AWS::EC2::Instance
DependsOn: GatewayToInternet
Properties:
ImageId: ${env:AWS_EC2_IMAGE_ID}
InstanceInitiatedShutdownBehavior: stop
InstanceType: ${env:AWS_EC2_INSTANCE_TYPE} # t3a.xlarge
KeyName: ${env:AWS_KEY_NAME}
Monitoring: true
BlockDeviceMappings:
- DeviceName: /dev/sda1
Ebs:
DeleteOnTermination: true
# Encrypted: true
SnapshotId: snap-0a52a8f51496c3782
VolumeSize: ${env:AWS_EC2_STORAGE}
VolumeType: gp2
NetworkInterfaces:
- GroupSet:
- Ref: RelayNodeSecurityGroup
DeviceIndex: "0"
DeleteOnTermination: "true"
SubnetId:
Ref: SubnetBPublic
# https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/quickref-general.html#scenario-one-pseudo-parameter
UserData:
Fn::Base64: !Sub |
#!/bin/bash
mkdir /home/ubuntu/git
cd /home/ubuntu/git
git clone ${env:GIT_REPO_URL} cardano-stake-pool-aws
cp ./cardano-stake-pool-aws/config/node-config /home/ubuntu/.node-config
cd /home/ubuntu
sed -i ./.node-config -e "s/SSH_PORT=/SSH_PORT=${env:SSH_PORT}/g"
sed -i ./.node-config -e "s/IS_RELAY_NODE=/IS_RELAY_NODE=false/g"
sed -i ./.node-config -e "s/BLOCK_PRODUCER_NODE_IP=/BLOCK_PRODUCER_NODE_IP=${BlockProducerNodeIp}/g"
sed -i ./.node-config -e "s/RELAY_NODE_1_IP=/RELAY_NODE_1_IP=${RelayNode1Ip}/g"
sed -i ./.node-config -e "s/RELAY_NODE_2_IP=/RELAY_NODE_2_IP=${RelayNode2Ip}/g"
chmod +x ./git/cardano-stake-pool-aws/scripts/*
chmod +x ./git/cardano-stake-pool-aws/build/*
cd ./git/cardano-stake-pool-aws/build
su ubuntu -c './build.sh'
Tags:
- Key: Name
Value: "cardano-relay-node-2-${self:provider.stage}"
BlockProducerNodeSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: "Cardano Network - Block Producer Node"
GroupName: "block-producer-node-sg"
SecurityGroupIngress:
- Description: "Allow access to myself on my local machine"
IpProtocol: tcp
CidrIp: ${env:PERSONAL_LOCAL_IP}/32
FromPort: ${env:SSH_PORT}
ToPort: ${env:SSH_PORT}
- Description: "Allow Relay Node 1 access to Core Node"
IpProtocol: -1
CidrIp: !Join ["/", [!Ref RelayNode1Ip, 32]]
FromPort: 0
ToPort: 65535
- Description: "Allow Relay Node 2 access to Core Node"
IpProtocol: tcp
CidrIp: !Join ["/", [!Ref RelayNode2Ip, 32]]
FromPort: 0
ToPort: 65535
VpcId: !Ref VPC
RelayNodeSecurityGroup: