-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yaml
2077 lines (1908 loc) · 69.9 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
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
Parameters:
ApplicationDomain:
Type: String
Description: "Domain used for the battleshiper endpoints."
ApplicationDomainCertificateArn:
Type: String
Description: "ARN of the ACM certificate for the ApplicationDomain."
ApplicationDomainWildcardCertificateArn:
Type: String
Description: "ARN of the wildcard ACM certificate for '*.ApplicationDomain'."
GithubOAuthClientCredentialArn:
Type: String
Description: "ARN of the Secret containing Github Application App ID, App Secret Key, Client ID & Client Secret ('app_id', 'app_secret', 'client_id' & 'client_secret')."
GithubAdministratorUsername:
Type: String
Description: "Github username of the user which will be given administrator access rights upon registration."
Globals:
Function:
Timeout: 5
MemorySize: 128
Resources:
# Using ugly separator comments because cloudformation is dogwater:
# ============================================
# =========== Router =========================
# ============================================
BattleshiperRouterApi:
Type: AWS::Serverless::HttpApi
Properties:
Name: "battleshiper-router-api"
BattleshiperRouterLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: /aws/lambda/battleshiper-router-logs
LogGroupClass: STANDARD
RetentionInDays: 14
BattleshiperRouterLogReadPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-router-log-read-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- "logs:StartQuery"
- "logs:GetQueryResults"
Resource: !GetAtt BattleshiperRouterLogGroup.Arn
Roles:
- !Ref BattleshiperApiAdminFuncRole
BattleshiperRouterLogWritePolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-router-log-write-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- "logs:CreateLogStream"
- "logs:PutLogEvents"
Resource: !GetAtt BattleshiperRouterLogGroup.Arn
Roles:
- !Ref BattleshiperRouterFuncRole
BattleshiperRouterFuncRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
# Policies are defined as separate policy objects and attached to the IAM role.
BattleshiperRouterFunc:
Type: AWS::Serverless::Function
Metadata:
BuildMethod: go1.x
Properties:
CodeUri: router
Handler: router
Runtime: provided.al2023
Role: !GetAtt BattleshiperRouterFuncRole.Arn
Architectures:
- x86_64
Events:
Auth:
Type: HttpApi
Properties:
Path: /{proxy+}
Method: ANY
ApiId: !Ref BattleshiperRouterApi
Environment:
Variables:
STATIC_BUCKET_NAME: !Ref BattleshiperProjectStaticBucket
SERVER_NAME_PREFIX: "battleshiper-project-server-"
ERROR_PAGE: !Sub "https://${ApplicationDomain}/error"
LoggingConfig:
LogGroup: !Ref BattleshiperRouterLogGroup
# ============================================
# =========== Database =======================
# ============================================
BattleshiperUserTable:
Type: AWS::DynamoDB::Table
# Change this to Retain if you want to keep the user data after deleting the stack.
DeletionPolicy: Delete
Properties:
TableName: battleshiper-users
BillingMode: PAY_PER_REQUEST
AttributeDefinitions:
- AttributeName: "id"
AttributeType: "S"
- AttributeName: "installation_id"
AttributeType: "N"
GlobalSecondaryIndexes:
- IndexName: gsi_installation_id
KeySchema:
- AttributeName: "installation_id"
KeyType: "HASH"
Projection:
ProjectionType: ALL
OnDemandThroughput:
MaxReadRequestUnits: 100
MaxWriteRequestUnits: 100
KeySchema:
- AttributeName: "id"
KeyType: "HASH"
OnDemandThroughput:
MaxReadRequestUnits: 100
MaxWriteRequestUnits: 100
BattleshiperUserTableReadPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-users-table-read-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- dynamodb:GetItem
- dynamodb:BatchGetItem
- dynamodb:Query
- dynamodb:Scan
- dynamodb:DescribeTable
Resource:
- !GetAtt BattleshiperUserTable.Arn
- !Sub "${BattleshiperUserTable.Arn}/*"
Roles:
- !Ref BattleshiperApiAuthFuncRole
- !Ref BattleshiperApiUserFuncRole
- !Ref BattleshiperApiAdminFuncRole
- !Ref BattleshiperApiResourceFuncRole
- !Ref BattleshiperApiPipelineFuncRole
- !Ref BattleshiperPipelineInitFuncRole
- !Ref BattleshiperPipelineDeployFuncRole
BattleshiperUserTableWritePolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-users-table-write-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
- dynamodb:BatchWriteItem
Resource:
- !GetAtt BattleshiperUserTable.Arn
- !Sub "${BattleshiperUserTable.Arn}/*"
Roles:
- !Ref BattleshiperApiAuthFuncRole
- !Ref BattleshiperApiUserFuncRole
- !Ref BattleshiperApiResourceFuncRole
- !Ref BattleshiperApiPipelineFuncRole
- !Ref BattleshiperApiAdminFuncRole
- !Ref BattleshiperPipelineDeployFuncRole
BattleshiperProjectTable:
Type: AWS::DynamoDB::Table
# Change this to Retain if you want to keep the user data after deleting the stack.
DeletionPolicy: Delete
Properties:
TableName: battleshiper-projects
BillingMode: PAY_PER_REQUEST
AttributeDefinitions:
- AttributeName: "project_name"
AttributeType: "S"
- AttributeName: "owner_id"
AttributeType: "S"
GlobalSecondaryIndexes:
- IndexName: gsi_owner_id
KeySchema:
- AttributeName: "owner_id"
KeyType: "HASH"
Projection:
ProjectionType: ALL
OnDemandThroughput:
MaxReadRequestUnits: 100
MaxWriteRequestUnits: 100
KeySchema:
- AttributeName: "project_name"
KeyType: "HASH"
OnDemandThroughput:
MaxReadRequestUnits: 100
MaxWriteRequestUnits: 100
BattleshiperProjectTableReadPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-projects-table-read-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- dynamodb:GetItem
- dynamodb:BatchGetItem
- dynamodb:Query
- dynamodb:Scan
- dynamodb:DescribeTable
Resource:
- !GetAtt BattleshiperProjectTable.Arn
- !Sub "${BattleshiperProjectTable.Arn}/*"
Roles:
- !Ref BattleshiperApiAdminFuncRole
- !Ref BattleshiperApiResourceFuncRole
- !Ref BattleshiperApiPipelineFuncRole
- !Ref BattleshiperPipelineInitFuncRole
- !Ref BattleshiperPipelineDeployFuncRole
- !Ref BattleshiperPipelineDeleteFuncRole
BattleshiperProjectTableWritePolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-projects-table-write-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
- dynamodb:BatchWriteItem
Resource:
- !GetAtt BattleshiperProjectTable.Arn
- !Sub "${BattleshiperProjectTable.Arn}/*"
Roles:
- !Ref BattleshiperApiAdminFuncRole
- !Ref BattleshiperApiResourceFuncRole
- !Ref BattleshiperApiPipelineFuncRole
- !Ref BattleshiperPipelineInitFuncRole
- !Ref BattleshiperPipelineDeployFuncRole
- !Ref BattleshiperPipelineDeleteFuncRole
BattleshiperSubscriptionTable:
Type: AWS::DynamoDB::Table
# Change this to Retain if you want to keep the user data after deleting the stack.
DeletionPolicy: Delete
Properties:
TableName: battleshiper-subscriptions
BillingMode: PAY_PER_REQUEST
AttributeDefinitions:
- AttributeName: "id"
AttributeType: "S"
KeySchema:
- AttributeName: "id"
KeyType: "HASH"
OnDemandThroughput:
MaxReadRequestUnits: 100
MaxWriteRequestUnits: 100
BattleshiperSubscriptionTableReadPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-subscriptions-table-read-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- dynamodb:GetItem
- dynamodb:BatchGetItem
- dynamodb:Query
- dynamodb:Scan
- dynamodb:DescribeTable
Resource:
- !GetAtt BattleshiperSubscriptionTable.Arn
- !Sub "${BattleshiperSubscriptionTable.Arn}/*"
Roles:
- !Ref BattleshiperApiAuthFuncRole
- !Ref BattleshiperApiUserFuncRole
- !Ref BattleshiperApiAdminFuncRole
- !Ref BattleshiperApiResourceFuncRole
- !Ref BattleshiperApiPipelineFuncRole
- !Ref BattleshiperPipelineInitFuncRole
- !Ref BattleshiperPipelineDeployFuncRole
BattleshiperSubscriptionTableWritePolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-subscriptions-table-write-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
- dynamodb:BatchWriteItem
Resource:
- !GetAtt BattleshiperSubscriptionTable.Arn
- !Sub "${BattleshiperSubscriptionTable.Arn}/*"
Roles:
- !Ref BattleshiperApiAdminFuncRole
# ============================================
# =========== API ============================
# ============================================
BattleshiperApi:
Type: AWS::Serverless::HttpApi
Properties:
Name: "battleshiper-api"
BattleshiperApiLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: /aws/lambda/battleshiper-api-logs
LogGroupClass: STANDARD
RetentionInDays: 14
BattleshiperApiLogReadPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-api-log-read-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- "logs:StartQuery"
- "logs:GetQueryResults"
Resource: !GetAtt BattleshiperApiLogGroup.Arn
Roles:
- !Ref BattleshiperApiAdminFuncRole
BattleshiperApiLogWritePolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-api-log-write-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- "logs:CreateLogStream"
- "logs:PutLogEvents"
Resource: !GetAtt BattleshiperApiLogGroup.Arn
Roles:
- !Ref BattleshiperApiAuthFuncRole
- !Ref BattleshiperApiUserFuncRole
- !Ref BattleshiperApiAdminFuncRole
- !Ref BattleshiperApiResourceFuncRole
- !Ref BattleshiperApiPipelineFuncRole
- !Ref BattleshiperApiWebFuncRole
- !Ref BattleshiperApiWebBootstrapFuncRole
- !Ref BattleshiperApiWebCleanupFuncRole
BattleshiperApiJwtCredentials:
Type: AWS::SecretsManager::Secret
Properties:
Name: "battleshiper-api-jwt-credentials"
Description: "Battleshiper jwt secret used to sign and verify user tokens."
GenerateSecretString:
SecretStringTemplate: '{}'
GenerateStringKey: "secret"
PasswordLength: 40
ExcludeCharacters: '"@/\\'
BattleshiperApiJwtCredentialReadPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-api-jwt-credentials-read-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- "secretsmanager:GetSecretValue"
Resource: !Ref BattleshiperApiJwtCredentials
Roles:
- !Ref BattleshiperApiAuthFuncRole
- !Ref BattleshiperApiUserFuncRole
- !Ref BattleshiperApiAdminFuncRole
- !Ref BattleshiperApiResourceFuncRole
- !Ref BattleshiperApiPipelineFuncRole
BattleshiperApiGhClientCredentialReadPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-api-gh-client-credentials-read-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- "secretsmanager:GetSecretValue"
Resource: !Ref GithubOAuthClientCredentialArn
Roles:
- !Ref BattleshiperApiAuthFuncRole
- !Ref BattleshiperApiUserFuncRole
- !Ref BattleshiperApiAdminFuncRole
- !Ref BattleshiperApiResourceFuncRole
- !Ref BattleshiperApiPipelineFuncRole
BattleshiperApiAuthFuncRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
# Policies are defined as separate policy objects and attached to the IAM role.
BattleshiperApiAuthFunc:
Type: AWS::Serverless::Function
Metadata:
BuildMethod: go1.x
Properties:
CodeUri: api/auth
Handler: auth
Runtime: provided.al2023
Architectures:
- x86_64
Role: !GetAtt BattleshiperApiAuthFuncRole.Arn
Events:
Auth:
Type: HttpApi
Properties:
Path: /api/auth/{proxy+}
Method: ANY
ApiId: !Ref BattleshiperApi
Environment:
Variables:
BOOTSTRAP_TIMEOUT: "1500ms"
JWT_CREDENTIAL_ARN: !Ref BattleshiperApiJwtCredentials
USER_TOKEN_TTL: 172800 # 2 days
GITHUB_CLIENT_CREDENTIAL_ARN: !Ref GithubOAuthClientCredentialArn
REDIRECT_URI: !Sub "https://${ApplicationDomain}/api/auth/callback"
FRONTEND_REDIRECT_URI: !Sub "https://${ApplicationDomain}/profile"
USERTABLE: !Ref BattleshiperUserTable
SUBSCRIPTIONTABLE: !Ref BattleshiperSubscriptionTable
LoggingConfig:
LogGroup: !Ref BattleshiperApiLogGroup
BattleshiperApiUserFuncRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
# Policies are defined as separate policy objects and attached to the IAM role.
BattleshiperApiUserFunc:
Type: AWS::Serverless::Function
# Function must depend on policies attached to the role
# as described in docs: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
Metadata:
BuildMethod: go1.x
Properties:
CodeUri: api/user
Handler: user
Runtime: provided.al2023
Architectures:
- x86_64
Role: !GetAtt BattleshiperApiUserFuncRole.Arn
Events:
User:
Type: HttpApi
Properties:
Path: /api/user/{proxy+}
Method: ANY
ApiId: !Ref BattleshiperApi
Environment:
Variables:
BOOTSTRAP_TIMEOUT: "1500ms"
JWT_CREDENTIAL_ARN: !Ref BattleshiperApiJwtCredentials
USERTABLE: !Ref BattleshiperUserTable
SUBSCRIPTIONTABLE: !Ref BattleshiperSubscriptionTable
ADMIN_GITHUB_USERNAME: !Ref GithubAdministratorUsername
LoggingConfig:
LogGroup: !Ref BattleshiperApiLogGroup
BattleshiperApiAdminFuncRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
# Policies are defined as separate policy objects and attached to the IAM role.
BattleshiperApiAdminFunc:
Type: AWS::Serverless::Function
# Function must depend on policies attached to the role
# as described in docs: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
Metadata:
BuildMethod: go1.x
Properties:
CodeUri: api/admin
Handler: admin
Runtime: provided.al2023
Architectures:
- x86_64
Role: !GetAtt BattleshiperApiAdminFuncRole.Arn
Events:
Admin:
Type: HttpApi
Properties:
Path: /api/admin/{proxy+}
Method: ANY
ApiId: !Ref BattleshiperApi
Environment:
Variables:
BOOTSTRAP_TIMEOUT: "1500ms"
USERTABLE: !Ref BattleshiperUserTable
PROJECTTABLE: !Ref BattleshiperProjectTable
SUBSCRIPTIONTABLE: !Ref BattleshiperSubscriptionTable
JWT_CREDENTIAL_ARN: !Ref BattleshiperApiJwtCredentials
TICKET_CREDENTIAL_ARN: !Ref BattleshiperPipelineTicketCredentials
API_LOG_GROUP: !Ref BattleshiperApiLogGroup
PIPELINE_LOG_GROUP: !Ref BattleshiperPipelineLogGroup
ROUTER_LOG_GROUP: !Ref BattleshiperRouterLogGroup
DELETE_EVENTBUS_NAME: !Ref BattleshiperPipelineEventBus
DELETE_EVENT_SOURCE: "ch.megakuul.battleshiper"
DELETE_EVENT_ACTION: "battleshiper.delete"
DELETE_EVENT_TICKET_TTL: 800
LoggingConfig:
LogGroup: !Ref BattleshiperApiLogGroup
BattleshiperApiResourceFuncRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
# Policies are defined as separate policy objects and attached to the IAM role.
BattleshiperApiResourceFunc:
Type: AWS::Serverless::Function
# Function must depend on policies attached to the role
# as described in docs: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html
Metadata:
BuildMethod: go1.x
Properties:
CodeUri: api/resource
Handler: main.go
Runtime: provided.al2023
Architectures:
- x86_64
Role: !GetAtt BattleshiperApiResourceFuncRole.Arn
Events:
Resource:
Type: HttpApi
Properties:
Path: /api/resource/{proxy+}
Method: ANY
ApiId: !Ref BattleshiperApi
Environment:
Variables:
BOOTSTRAP_TIMEOUT: "1500ms"
USERTABLE: !Ref BattleshiperUserTable
PROJECTTABLE: !Ref BattleshiperProjectTable
SUBSCRIPTIONTABLE: !Ref BattleshiperSubscriptionTable
JWT_CREDENTIAL_ARN: !Ref BattleshiperApiJwtCredentials
GITHUB_CLIENT_CREDENTIAL_ARN: !Ref GithubOAuthClientCredentialArn
TICKET_CREDENTIAL_ARN: !Ref BattleshiperPipelineTicketCredentials
INIT_EVENTBUS_NAME: !Ref BattleshiperPipelineEventBus
INIT_EVENT_SOURCE: "ch.megakuul.battleshiper"
INIT_EVENT_ACTION: "battleshiper.init"
INIT_EVENT_TICKET_TTL: 800
BUILD_EVENTBUS_NAME: !Ref BattleshiperPipelineEventBus
BUILD_EVENT_SOURCE: "ch.megakuul.battleshiper"
BUILD_EVENT_ACTION: "battleshiper.build"
# deployment ticket is used as parameter of the aws.batch event
# https://docs.aws.amazon.com/batch/latest/userguide/batch_cwe_events.html
DEPLOY_EVENT_SOURCE: "aws.batch"
DEPLOY_EVENT_ACTION: "Batch Job State Change"
DEPLOY_EVENT_TICKET_TTL: 1400
DELETE_EVENTBUS_NAME: !Ref BattleshiperPipelineEventBus
DELETE_EVENT_SOURCE: "ch.megakuul.battleshiper"
DELETE_EVENT_ACTION: "battleshiper.delete"
DELETE_EVENT_TICKET_TTL: 800
CLOUDFRONT_CACHE_ARN: !GetAtt BattleshiperProjectCDNRouteStore.Arn
LoggingConfig:
LogGroup: !Ref BattleshiperApiLogGroup
BattleshiperApiPipelineFuncRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
# Policies are defined as separate policy objects and attached to the IAM role.
BattleshiperApiPipelineFunc:
Type: AWS::Serverless::Function
Metadata:
BuildMethod: go1.x
Properties:
CodeUri: api/pipeline
Handler: pipeline
Runtime: provided.al2023
Architectures:
- x86_64
Role: !GetAtt BattleshiperApiPipelineFuncRole.Arn
Events:
Pipeline:
Type: HttpApi
Properties:
Path: /api/pipeline/{proxy+}
Method: ANY
ApiId: !Ref BattleshiperApi
Environment:
Variables:
BOOTSTRAP_TIMEOUT: "1500ms"
USERTABLE: !Ref BattleshiperUserTable
PROJECTTABLE: !Ref BattleshiperProjectTable
SUBSCRIPTIONTABLE: !Ref BattleshiperSubscriptionTable
GITHUB_CLIENT_CREDENTIAL_ARN: !Ref GithubOAuthClientCredentialArn
TICKET_CREDENTIAL_ARN: !Ref BattleshiperPipelineTicketCredentials
BUILD_EVENTBUS_NAME: !Ref BattleshiperPipelineEventBus
BUILD_EVENT_SOURCE: "ch.megakuul.battleshiper"
BUILD_EVENT_ACTION: "battleshiper.build"
# deployment ticket is used as parameter of the aws.batch event
# https://docs.aws.amazon.com/batch/latest/userguide/batch_cwe_events.html
DEPLOY_EVENT_SOURCE: "aws.batch"
DEPLOY_EVENT_ACTION: "Batch Job State Change"
DEPLOY_EVENT_TICKET_TTL: 1000
LoggingConfig:
LogGroup: !Ref BattleshiperApiLogGroup
BattleshiperApiWebFuncRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
# Policies are defined as separate policy objects and attached to the IAM role.
BattleshiperApiWebFunc:
Type: AWS::Serverless::Function
Metadata:
BuildMethod: makefile
Properties:
CodeUri: web
Handler: index.handler
Runtime: nodejs20.x
Architectures:
- x86_64
AutoPublishAlias: live
# I'm using traffic shifting here in a rather unusual way, I'm essentially using the pre traffic hook
# to upload Sveltekit assets to s3 (while still keeping the old assets for a smooth update).
# After the traffic shift completes, I use the post traffic hook to remove the old s3 assets.
# Even if this is not the primary purpose of those hooks, I see this as an excellent use case,
# as it allows me to smoothly rollout updates to the Sveltekit dashboard without any interruptions.
DeploymentPreference:
Enabled: True
Type: AllAtOnce
Hooks:
PreTraffic: !Ref BattleshiperApiWebBootstrapFunc
PostTraffic: !Ref BattleshiperApiWebCleanupFunc
Role: !GetAtt BattleshiperApiWebFuncRole.Arn
Events:
Pipeline:
Type: HttpApi
Properties:
Path: /{proxy+}
Method: ANY
ApiId: !Ref BattleshiperApi
LoggingConfig:
LogGroup: !Ref BattleshiperApiLogGroup
BattleshiperApiWebBootstrapFuncRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
Policies:
- PolicyName: "battleshiper-api-web-bootstrap-codedeploy-exec-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: "Allow"
Action:
- "codedeploy:PutLifecycleEventHookExecutionStatus"
Resource:
- !Sub 'arn:${AWS::Partition}:codedeploy:${AWS::Region}:${AWS::AccountId}:deploymentgroup:${ServerlessDeploymentApplication}/*'
# Policies are defined as separate policy objects and attached to the IAM role.
BattleshiperApiWebBootstrapFunc:
Type: AWS::Serverless::Function
Metadata:
BuildMethod: go1.x
Properties:
# FunctionName must be prefixed with "CodeDeployHook_" like poorly documented here:
# https://github.com/aws/serverless-application-model/issues/250
FunctionName: "CodeDeployHook_ApiWebBootstrapFunc"
Timeout: 30
CodeUri: web/hooks/bootstrap
Handler: bootstrap
Runtime: provided.al2023
Architectures:
- x86_64
Role: !GetAtt BattleshiperApiWebBootstrapFuncRole.Arn
DeploymentPreference:
Enabled: False
Environment:
Variables:
BOOTSTRAP_TIMEOUT: "1500ms"
STATIC_BUCKET_NAME: !Ref BattleshiperStaticBucket
LoggingConfig:
LogGroup: !Ref BattleshiperApiLogGroup
BattleshiperApiWebCleanupFuncRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- "sts:AssumeRole"
Policies:
- PolicyName: "battleshiper-api-web-cleanup-codedeploy-exec-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: "Allow"
Action:
- "codedeploy:PutLifecycleEventHookExecutionStatus"
Resource:
- !Sub 'arn:${AWS::Partition}:codedeploy:${AWS::Region}:${AWS::AccountId}:deploymentgroup:${ServerlessDeploymentApplication}/*'
# Policies are defined as separate policy objects and attached to the IAM role.
BattleshiperApiWebCleanupFunc:
Type: AWS::Serverless::Function
Metadata:
BuildMethod: go1.x
Properties:
# FunctionName must be prefixed with "CodeDeployHook_" like poorly documented here:
# https://github.com/aws/serverless-application-model/issues/250
FunctionName: "CodeDeployHook_ApiWebCleanupFunc"
Timeout: 30
CodeUri: web/hooks/cleanup
Handler: cleanup
Runtime: provided.al2023
Architectures:
- x86_64
Role: !GetAtt BattleshiperApiWebCleanupFuncRole.Arn
DeploymentPreference:
Enabled: False
Environment:
Variables:
BOOTSTRAP_TIMEOUT: "1500ms"
STATIC_BUCKET_NAME: !Ref BattleshiperStaticBucket
LoggingConfig:
LogGroup: !Ref BattleshiperApiLogGroup
# ============================================
# =========== S3 Static Bucket ===============
# ============================================
BattleshiperStaticBucket:
Type: AWS::S3::Bucket
# Change this to Retain if you want to keep the user data after deleting the stack.
DeletionPolicy: Delete
Properties:
Tags:
- Key: "Name"
Value: "battleshiper-static-bucket"
BattleshiperStaticBucketBucketPolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref BattleshiperStaticBucket
PolicyDocument:
Version: "2012-10-17"
Statement:
- Action:
- "s3:GetObject"
Effect: Allow
Resource:
- !Sub "${BattleshiperStaticBucket.Arn}/*"
Principal:
Service: cloudfront.amazonaws.com
BattleshiperStaticBucketFullPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: "battleshiper-static-bucket-full-access"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Action:
- "s3:HeadObject"
- "s3:GetObject"
- "s3:GetObjectTagging"
- "s3:PutObject"
- "s3:PutObjectTagging"
- "s3:DeleteObject"
Effect: Allow
Resource:
- !Sub "${BattleshiperStaticBucket.Arn}/*"
- Action:
- "s3:ListBucket"
Effect: Allow
Resource:
- !Sub "${BattleshiperStaticBucket.Arn}"
Roles:
- !Ref BattleshiperApiWebBootstrapFuncRole
- !Ref BattleshiperApiWebCleanupFuncRole
# ============================================
# =========== CDN ============================
# ============================================
BattleshiperCDNWebCachePolicy:
Type: AWS::CloudFront::CachePolicy
Properties:
CachePolicyConfig:
Name: "battleshiper-web-cache-policy"
DefaultTTL: 86400 # 1 day
MinTTL: 1 # 1 second
MaxTTL: 31536000 # 1 year
ParametersInCacheKeyAndForwardedToOrigin:
CookiesConfig:
CookieBehavior: "none"
EnableAcceptEncodingBrotli: true
EnableAcceptEncodingGzip: true
HeadersConfig:
HeaderBehavior: none
QueryStringsConfig:
QueryStringBehavior: none
BattleshiperCDNServerCachePolicy:
Type: AWS::CloudFront::CachePolicy
Properties:
CachePolicyConfig:
Name: "battleshiper-server-cache-policy"
DefaultTTL: 0
MinTTL: 0
MaxTTL: 0
ParametersInCacheKeyAndForwardedToOrigin:
CookiesConfig:
CookieBehavior: "none"
EnableAcceptEncodingBrotli: false
EnableAcceptEncodingGzip: false
HeadersConfig:
HeaderBehavior: "none"
QueryStringsConfig:
QueryStringBehavior: "none"
BattleshiperCDNServerOriginRequestPolicy:
Type: AWS::CloudFront::OriginRequestPolicy
Properties:
OriginRequestPolicyConfig:
Name: "battleshiper-server-origin-policy"
CookiesConfig:
CookieBehavior: all
HeadersConfig:
HeaderBehavior: allExcept
Headers:
- host # exclude host implicitly tells cloudfront to replace it with the api gateway origin host (api gateway expects this)
QueryStringsConfig:
QueryStringBehavior: all
BattleshiperCDNOriginAccessControl:
Type: AWS::CloudFront::OriginAccessControl
Properties:
OriginAccessControlConfig:
Name: "battleshiper-cdn-origin-access"
OriginAccessControlOriginType: s3
SigningBehavior: always
SigningProtocol: sigv4
BattleshiperCDN:
Type: AWS::CloudFront::Distribution
Properties:
DistributionConfig:
Enabled: true
PriceClass: "PriceClass_100"
ViewerCertificate:
AcmCertificateArn: !Ref ApplicationDomainCertificateArn
SslSupportMethod: "sni-only"
MinimumProtocolVersion: "TLSv1.2_2021"
Origins:
- Id: "battleshiper-static-bucket"
# RegionalDomainName is used to increase deployment speed (https://stackoverflow.com/questions/38735306/aws-cloudfront-redirecting-to-s3-bucket)
DomainName: !GetAtt BattleshiperStaticBucket.RegionalDomainName
OriginAccessControlId: !GetAtt BattleshiperCDNOriginAccessControl.Id
S3OriginConfig: {}
- Id: "battleshiper-api"
DomainName: !Sub "${BattleshiperApi}.execute-api.${AWS::Region}.amazonaws.com"
CustomOriginConfig:
OriginProtocolPolicy: "https-only"
DefaultCacheBehavior:
TargetOriginId: "battleshiper-api"
AllowedMethods:
- GET
- HEAD
- OPTIONS
- PUT
- PATCH
- POST
- DELETE
ViewerProtocolPolicy: redirect-to-https
CachePolicyId: !Ref BattleshiperCDNServerCachePolicy
OriginRequestPolicyId: !Ref BattleshiperCDNServerOriginRequestPolicy
DefaultRootObject: index.html