-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.yml
More file actions
745 lines (672 loc) · 27.6 KB
/
template.yml
File metadata and controls
745 lines (672 loc) · 27.6 KB
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
# Template resources
Resources:
# ░██████╗██████╗░
# ██╔════╝╚════██╗
# ╚█████╗░░█████╔╝
# ░╚═══██╗░╚═══██╗
# ██████╔╝██████╔╝
# ╚═════╝░╚═════╝░
# S3 bucket where artifacts will be stored
ArtifactBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: !Join
- ""
- - Ref: ProjectName
- -artifacts
Tags:
- Key: Project
Value:
Ref: ProjectName
# Determines how long artifacts are stored
LifecycleConfiguration:
Rules:
- ExpirationInDays:
Ref: ArtifactLifetimeInDays
Status: Enabled
# S3 bucket where the backend will be stored
BackendBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: !Join
- ""
- - Ref: ProjectName
- -backend
Tags:
- Key: Project
Value:
Ref: ProjectName
# S3 bucket where the frontend will be stored
FrontendBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: !Join
- ""
- - Ref: ProjectName
- -frontend
Tags:
- Key: Project
Value:
Ref: ProjectName
WebsiteConfiguration:
IndexDocument:
Ref: IndexDocumentName
ErrorDocument:
Ref: ErrorDocumentName
# ░█████╗░██╗░░░░░░█████╗░██╗░░░██╗██████╗░███████╗██████╗░░█████╗░███╗░░██╗████████╗
# ██╔══██╗██║░░░░░██╔══██╗██║░░░██║██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗░██║╚══██╔══╝
# ██║░░╚═╝██║░░░░░██║░░██║██║░░░██║██║░░██║█████╗░░██████╔╝██║░░██║██╔██╗██║░░░██║░░░
# ██║░░██╗██║░░░░░██║░░██║██║░░░██║██║░░██║██╔══╝░░██╔══██╗██║░░██║██║╚████║░░░██║░░░
# ╚█████╔╝███████╗╚█████╔╝╚██████╔╝██████╔╝██║░░░░░██║░░██║╚█████╔╝██║░╚███║░░░██║░░░
# ░╚════╝░╚══════╝░╚════╝░░╚═════╝░╚═════╝░╚═╝░░░░░╚═╝░░╚═╝░╚════╝░╚═╝░░╚══╝░░░╚═╝░░░
# CloudFront Distribution serving the frontend
Distribution:
Type: AWS::CloudFront::Distribution
Properties:
DistributionConfig:
Aliases:
- Ref: DomainName
# Distribution cache behaviors.
DefaultCacheBehavior:
AllowedMethods:
- GET
- HEAD
# Note: This is the Managed-CachingOptimized policy
CachePolicyId: 658327ea-f89d-4fab-a63d-7e88639e58f6
TargetOriginId: S3-origin
ViewerProtocolPolicy: redirect-to-https
DefaultRootObject: index.html
Enabled: True
HttpVersion: http2
Origins:
# The frontend S3 bucket
- DomainName: !GetAtt [FrontendBucket, DomainName]
Id: S3-origin
S3OriginConfig:
OriginAccessIdentity: !Join
- ""
- - "origin-access-identity/cloudfront/"
- Ref: FrontendOriginAccessIdentity
PriceClass:
Ref: CloudFrontPriceClass
# SSL certificate
ViewerCertificate:
AcmCertificateArn:
Ref: CloudFrontCertificateARN
MinimumProtocolVersion: TLSv1.2_2019
SslSupportMethod: sni-only
Tags:
- Key: Project
Value:
Ref: ProjectName
# CloudFront Origin Access Identity (OAI) for accessing the frontend S3 bucket
FrontendOriginAccessIdentity:
Type: AWS::CloudFront::CloudFrontOriginAccessIdentity
Properties:
CloudFrontOriginAccessIdentityConfig:
Comment: Origin Access Identity used by the distribution to reach the frontend bucket
# ██████╗░██╗██████╗░███████╗██╗░░░░░██╗███╗░░██╗███████╗
# ██╔══██╗██║██╔══██╗██╔════╝██║░░░░░██║████╗░██║██╔════╝
# ██████╔╝██║██████╔╝█████╗░░██║░░░░░██║██╔██╗██║█████╗░░
# ██╔═══╝░██║██╔═══╝░██╔══╝░░██║░░░░░██║██║╚████║██╔══╝░░
# ██║░░░░░██║██║░░░░░███████╗███████╗██║██║░╚███║███████╗
# ╚═╝░░░░░╚═╝╚═╝░░░░░╚══════╝╚══════╝╚═╝╚═╝░░╚══╝╚══════╝
# Actual pipeline
Pipeline:
Type: AWS::CodePipeline::Pipeline
Properties:
# Artifact store location
ArtifactStore:
Type: S3
Location:
Ref: ArtifactBucket
# Add the IAM role to the bucket
RoleArn: !GetAtt [PipelineRole, Arn]
# Stages
Stages:
# Stage for loading code from Github
- Name: Source
Actions:
# Determine the action type. See https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#actions-valid-providers
- ActionTypeId:
Category: Source
Owner: AWS
Provider: CodeStarSourceConnection
Version: "1"
# Connect the pipeline to the git provider. The CodeStar connection could, as of right now, be either Github or Bitbucket. See documentation for latest info: https://docs.aws.amazon.com/codepipeline/latest/userguide/action-reference-CodestarConnectionSource.html
Configuration:
ConnectionArn:
Ref: CodeStarConnectionARN
FullRepositoryId: !Join
- ""
- - Ref: RepositoryOwner
- "/"
- Ref: RepositoryName
BranchName:
Ref: BranchName
OutputArtifactFormat: "CODE_ZIP"
# Name the output of this action. Note that this is the name that will be referenced further down the pipeline
OutputArtifacts:
- Name: SourceArtifact
# Action name
Name: Get_source
# Stage for building the code loaded from Github
- Name: Build-and-zip
Actions:
# Action that builds the frontend
- ActionTypeId:
Category: Build
Owner: AWS
Provider: CodeBuild
Version: 1
# Connect the build project
Configuration:
ProjectName:
Ref: FrontendBuilder
PrimarySource: SourceArtifact
# Get the source code artifact
InputArtifacts:
- Name: SourceArtifact
# Output the build files
OutputArtifacts:
- Name: FrontendBuild
# Action name
Name: Build_frontend
# Action that builds the backend
- ActionTypeId:
Category: Build
Owner: AWS
Provider: CodeBuild
Version: 1
# Connect the build project
Configuration:
ProjectName:
Ref: BackendBuilder
PrimarySource: SourceArtifact
# Get the source code artifact
InputArtifacts:
- Name: SourceArtifact
# Output the build files
OutputArtifacts:
- Name: BackendBuild
- Name: BuildData
# Action name
Name: Build_backend
# Stage for deploying the build
- Name: Deploy-to-S3
Actions:
# Action that deploys the frontend
- ActionTypeId:
Category: Deploy
Owner: AWS
Provider: S3
Version: 1
# Configure where to deploy
Configuration:
BucketName:
Ref: FrontendBucket
Extract: True
# Get the artifact produced in the above stage
InputArtifacts:
- Name: FrontendBuild
# Action name
Name: Deploy_frontend_build
# Action that deploys the backend
- ActionTypeId:
Category: Deploy
Owner: AWS
Provider: S3
Version: 1
# Configure where to deploy
Configuration:
BucketName:
Ref: BackendBucket
Extract: True
# Get the artifact produced in the above stage
InputArtifacts:
- Name: BackendBuild
# Action name
Name: Deploy_backend_build
# Stage that creates a CloudFormation changeset for the backend
- Name: Create-backend-changeset
Actions:
# Action that creates a CloudFormation changeset for the backend
- ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
# Configuration for how the changeset is created
Configuration:
ActionMode: CHANGE_SET_REPLACE
Capabilities: CAPABILITY_IAM
ChangeSetName: BackendChanges
ParameterOverrides: !Sub |
{
"BackendS3Bucket": "${BackendBucket}",
"BuildId": { "Fn::GetParam" : ["BuildData", "buildData.json", "BuildId"] }
}
RoleArn: !GetAtt [ChangeSetRole, Arn]
StackName:
Ref: BackendStack
# Mention where the template and template config is located
TemplatePath: SourceArtifact::backend/template.yml
TemplateConfiguration: SourceArtifact::backend/stack-config.json
# Get the source
InputArtifacts:
- Name: SourceArtifact
- Name: BuildData
Name: CreateBackendChangeset
# Stage for verifying backend updates
- Name: Approve-backend-changeset
Actions:
# Manual approval action
- ActionTypeId:
Category: Approval
Owner: AWS
Provider: Manual
Version: 1
Configuration:
NotificationArn:
Ref: ApprovalSNSTopicARN
CustomData: !Join
- ""
- - "The pipeline for "
- Ref: ProjectName
- " has new changes awaiting manual approval"
InputArtifacts: []
Name: BackendApproval
# Stage that executes the backend changeset (if approved)
- Name: Execute-backend-changeset
Actions:
# Action that executes the backend changeset
- ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
# Configuration for how the changeset is executed
Configuration:
ActionMode: CHANGE_SET_EXECUTE
Capabilities: CAPABILITY_IAM
ChangeSetName: BackendChanges
RoleArn: !GetAtt [ChangeSetRole, Arn]
StackName:
Ref: BackendStack
InputArtifacts: []
Name: ExecuteBackendChangeset
# Pipeline name
Name: !Join
- ""
- - Ref: ProjectName
- "-pipeline"
# Tags
Tags:
- Key: Project
Value: ProjectName
# ██████╗░██╗░░░██╗██╗██╗░░░░░██████╗░███████╗██████╗░░██████╗
# ██╔══██╗██║░░░██║██║██║░░░░░██╔══██╗██╔════╝██╔══██╗██╔════╝
# ██████╦╝██║░░░██║██║██║░░░░░██║░░██║█████╗░░██████╔╝╚█████╗░
# ██╔══██╗██║░░░██║██║██║░░░░░██║░░██║██╔══╝░░██╔══██╗░╚═══██╗
# ██████╦╝╚██████╔╝██║███████╗██████╔╝███████╗██║░░██║██████╔╝
# ╚═════╝░░╚═════╝░╚═╝╚══════╝╚═════╝░╚══════╝╚═╝░░╚═╝╚═════╝░
# CodeBuild project for the backend
BackendBuilder:
Type: AWS::CodeBuild::Project
Properties:
Artifacts:
Type: CODEPIPELINE
# Build environment
Environment:
ComputeType: BUILD_GENERAL1_SMALL
Image: aws/codebuild/amazonlinux2-x86_64-standard:3.0
Type: LINUX_CONTAINER
# Name of the CodeBuild project
Name: !Join
- ""
- - Ref: ProjectName
- "-backend-builder"
# Queuing timeout
QueuedTimeoutInMinutes: 20
# IAM role for the builder
ServiceRole: !GetAtt [BuildersRole, Arn]
Source:
BuildSpec: backend/buildspec.yml
Type: CODEPIPELINE
Tags:
- Key: Project
Value:
Ref: ProjectName
# Building timeout
TimeoutInMinutes: 5
# CodeBuild project for the frontend
FrontendBuilder:
Type: AWS::CodeBuild::Project
Properties:
Artifacts:
Type: CODEPIPELINE
# Build environment
Environment:
ComputeType: BUILD_GENERAL1_SMALL
Image: aws/codebuild/amazonlinux2-x86_64-standard:3.0
Type: LINUX_CONTAINER
# Environment variable used for clearing the bucket before deployment
EnvironmentVariables:
- Name: OUTPUT_BUCKET
Value:
Ref: FrontendBucket
Type: PLAINTEXT
# Name of the CodeBuild project
Name: !Join
- ""
- - Ref: ProjectName
- "-frontend-builder"
# Queuing timeout
QueuedTimeoutInMinutes: 20
# IAM role for the builder
ServiceRole: !GetAtt [BuildersRole, Arn]
Source:
BuildSpec: frontend/buildspec.yml
Type: CODEPIPELINE
Tags:
- Key: Project
Value:
Ref: ProjectName
# Building timeout
TimeoutInMinutes: 5
# ░█████╗░██╗░░░░░░█████╗░██╗░░░██╗██████╗░███████╗░█████╗░██████╗░███╗░░░███╗░█████╗░████████╗██╗░█████╗░███╗░░██╗
# ██╔══██╗██║░░░░░██╔══██╗██║░░░██║██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗░████║██╔══██╗╚══██╔══╝██║██╔══██╗████╗░██║
# ██║░░╚═╝██║░░░░░██║░░██║██║░░░██║██║░░██║█████╗░░██║░░██║██████╔╝██╔████╔██║███████║░░░██║░░░██║██║░░██║██╔██╗██║
# ██║░░██╗██║░░░░░██║░░██║██║░░░██║██║░░██║██╔══╝░░██║░░██║██╔══██╗██║╚██╔╝██║██╔══██║░░░██║░░░██║██║░░██║██║╚████║
# ╚█████╔╝███████╗╚█████╔╝╚██████╔╝██████╔╝██║░░░░░╚█████╔╝██║░░██║██║░╚═╝░██║██║░░██║░░░██║░░░██║╚█████╔╝██║░╚███║
# ░╚════╝░╚══════╝░╚════╝░░╚═════╝░╚═════╝░╚═╝░░░░░░╚════╝░╚═╝░░╚═╝╚═╝░░░░░╚═╝╚═╝░░╚═╝░░░╚═╝░░░╚═╝░╚════╝░╚═╝░░╚══╝
# CloudFormation stack where backend resources will be placed
BackendStack:
Type: AWS::CloudFormation::Stack
Properties:
TemplateURL:
Ref: InitialBackendTemplateURL
Tags:
- Key: Project
Value:
Ref: ProjectName
# ██╗░█████╗░███╗░░░███╗
# ██║██╔══██╗████╗░████║
# ██║███████║██╔████╔██║
# ██║██╔══██║██║╚██╔╝██║
# ██║██║░░██║██║░╚═╝░██║
# ╚═╝╚═╝░░╚═╝╚═╝░░░░░╚═╝
# Bucket policy for the frontend bucket
FrontendBucketPolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket:
Ref: FrontendBucket
PolicyDocument:
Id: !Join
- ""
- - Ref: FrontendBucket
- "_policy"
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
AWS: !Join
- ""
- - "arn:aws:iam::cloudfront:user/CloudFront Origin Access Identity "
- Ref: FrontendOriginAccessIdentity
Action: "s3:GetObject"
Resource: !Join
- ""
- - "arn:aws:s3:::"
- Ref: FrontendBucket
- /*
# IAM role for the builders
BuildersRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: ["sts:AssumeRole"]
Effect: Allow
Principal:
Service: [codebuild.amazonaws.com]
# Builder permissions
Policies:
- PolicyName: "root"
PolicyDocument:
Version: "2012-10-17"
Statement:
# Cloudwatch permissions
- Effect: "Allow"
Action:
- "cloudwatch:*"
- "logs:CreateLogGroup"
- "logs:CreateLogStream"
- "logs:PutLogEvents"
Resource: "*"
# Permissions for retrieving the source artifact
- Effect: "Allow"
Action:
- "s3:PutObject"
- "s3:GetObject"
- "s3:GetObjectVersion"
Resource: !Join
- ""
- - !GetAtt [ArtifactBucket, Arn]
- /*
# Permissions for clearing the output bucket
- Effect: "Allow"
Action: "s3:ListBucket"
Resource: !GetAtt [FrontendBucket, Arn]
- Effect: "Allow"
Action: "s3:DeleteObject"
Resource: !Join
- ""
- - !GetAtt [FrontendBucket, Arn]
- /*
# IAM role for the pipeline
PipelineRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: ["sts:AssumeRole"]
Effect: Allow
Principal:
Service: [codepipeline.amazonaws.com]
# Pipeline permissions
Policies:
- PolicyName: "root"
PolicyDocument:
Version: "2012-10-17"
Statement:
# Codestar permissions
- Effect: "Allow"
Action: "codestar-connections:UseConnection"
Resource:
Ref: CodeStarConnectionARN
# Bucket permissions
- Effect: "Allow"
Action: "s3:*"
Resource:
- !Join
- ""
- - !GetAtt [ArtifactBucket, Arn]
- /*
- !Join
- ""
- - !GetAtt [BackendBucket, Arn]
- /*
- !Join
- ""
- - !GetAtt [FrontendBucket, Arn]
- /*
# Codebuild permissions
- Effect: "Allow"
Action:
- "codebuild:StartBuild"
- "codebuild:StartBuildBatch"
- "codebuild:BatchGetBuilds"
- "codebuild:BatchGetBuildBatches"
Resource:
- !GetAtt [BackendBuilder, Arn]
- !GetAtt [FrontendBuilder, Arn]
# SNS permissions
- Effect: "Allow"
Action: "sns:Publish"
Resource:
Ref: ApprovalSNSTopicARN
- Effect: "Allow"
Action:
- "cloudformation:CreateChangeSet"
- "cloudformation:DeleteChangeSet"
- "cloudformation:DescribeChangeSet"
- "cloudformation:DescribeStacks"
- "cloudformation:ExecuteChangeSet"
Resource:
Ref: BackendStack
# Allow this role to pass on permissions to the changeset creator
- Effect: "Allow"
Action: "iam:PassRole"
Resource: !GetAtt [ChangeSetRole, Arn]
# IAM role used by the pipeline action creating the changeset
ChangeSetRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: ["sts:AssumeRole"]
Effect: Allow
Principal:
Service: [cloudformation.amazonaws.com]
# Action permissions
Policies:
- PolicyName: "root"
PolicyDocument:
Version: "2012-10-17"
Statement:
# Permissions used when creating resources. Change these as needed, right now they are set up for serverless apps
- Effect: Allow
Action:
- "apigateway:*"
- "iam:AttachRolePolicy"
- "iam:CreateRole"
- "iam:DeleteRole"
- "iam:DeleteRolePolicy"
- "iam:DetachRolePolicy"
- "iam:GetRole"
- "iam:getRolePolicy"
- "iam:PassRole"
- "iam:PutRolePolicy"
- "iam:TagRole"
- "lambda:*"
- "dynamodb:*"
Resource: "*"
# Access to retrieve items from the backend bucket
- Effect: Allow
Action:
- "s3:GetObject"
Resource: !Join
- ""
- - !GetAtt [BackendBucket, Arn]
- /*
# Template parameters
Parameters:
# ARN of the SNS topic used to notify about awaiting manual approvals
ApprovalSNSTopicARN:
Type: String
Description: Enter the ARN of the SNS topic you want to use to send notifications about awaiting manual approvals
# How many days artifacts are stored
ArtifactLifetimeInDays:
Type: Number
Description: Specify how many days you want artifacts to be stored for (1->180 days accepted)
Default: 30
MaxValue: 180
MinValue: 1
# Branch name
BranchName:
Type: String
Description: Enter the branch name that you want to be used for the build
# ARN of the SSL certificate to be used by the CloudFront Distribution
CloudFrontCertificateARN:
Type: String
Description: Enter the ARN of the Amazon Certificate Manager certificate to be used by the CloudFront Distribution
# CloudFront distribution price class
CloudFrontPriceClass:
Type: String
Default: PriceClass_100
AllowedValues:
- PriceClass_100
- PriceClass_200
- PriceClass_All
Description: Enter the allowed price class for the CloudFront Distribution
# CodeStar Connection
CodeStarConnectionARN:
Type: String
Description: Enter the ARN of the CodeStar connection you want to use. Existing connecitons can be found under Developer Tools > Settings > Connections
# Domain name used by the CloudFront distribution
DomainName:
Type: String
Description: Enter the domain name to be used by the CloudFront Distribution
# Name of the error file
ErrorDocumentName:
Type: String
Default: error.html
Description: Enter the name (or path) of your error file
# Name of the index file
IndexDocumentName:
Type: String
Default: index.html
Description: Enter the name (or path) of your index file
# S3 link to where the initial backend CloudFormation template is stored
InitialBackendTemplateURL:
Type: String
Description: Enter the link to your initial backend CloudFormation template. Can be empty (see https://github.com/stelligent/empty-stack/blob/master/empty-stack.yml)
# Then name of the project
ProjectName:
Type: String
Description: Enter what you want to call this project. Must be lowercase. Used for naming/tagging resources
AllowedPattern: "[a-z0-9_-]+"
# Github repository name
RepositoryName:
Type: String
Description: Enter the name of the repository you want to build
# Github username
RepositoryOwner:
Type: String
Description: Enter the git provider username of the repository owner
# Template metadata
Metadata:
AWS::CloudFormation::Interface:
ParameterGroups:
- Label:
default: "General"
Parameters:
- ProjectName
- Label:
default: "Pipeline configuration"
Parameters:
- ApprovalSNSTopicARN
- ArtifactLifetimeInDays
- InitialBackendTemplateURL
- Label:
default: "Git configuration"
Parameters:
- CodeStarConnectionARN
- RepositoryOwner
- RepositoryName
- BranchName
- Label:
default: "Hosting configuration"
Parameters:
- DomainName
- CloudFrontCertificateARN
- CloudFrontPriceClass
- IndexDocumentName
- ErrorDocumentName
# Template outputs
Outputs:
CloudFrontURL:
Description: The URL of the CloudFront Distribution. Point your DNS to this
Value: !GetAtt [Distribution, DomainName]