-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCodePipeline.yml
572 lines (555 loc) · 19.7 KB
/
CodePipeline.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
AWSTemplateFormatVersion: 2010-09-09
Description: CovidSafe Example application pipeline
Parameters:
ProjectName:
Type: String
Default: CovidSafe
Description: Name for the Project
BucketPrefix:
Type: String
Default: covid-safe
CodeBuildEnvironment:
Type: String
Default: "aws/codebuild/standard:5.0"
Description: Name of the image to use for the CodeBuild container
DevAccountNo:
Type: String
Description: The Account Number of the dev account
ProdAccountNo:
Type: String
Description: The Account Number of the prod account
Resources:
ArtefactBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: !Sub ${BucketPrefix}-artefactbucket
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: 'aws:kms'
KMSMasterKeyID:
Fn::ImportValue:
!Sub '${ProjectName}:ArtefactKMSKey'
PublicAccessBlockConfiguration:
BlockPublicAcls: true
BlockPublicPolicy: true
IgnorePublicAcls: true
RestrictPublicBuckets: true
LifecycleConfiguration:
Rules:
- Id: Purge after 7 days of creation
ExpirationInDays: 7
Status: Enabled
Tags:
- Key: Project
Value: !Ref ProjectName
ArtefactBucketPolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref ArtefactBucket
PolicyDocument:
Statement:
- Sid: ServicePermit
Effect: Allow
Principal:
Service: codebuild.amazonaws.com
Action: 's3:*'
Resource: !Sub 'arn:aws:s3:::${BucketPrefix}-artefactbucket'
- Sid: ServicePermit1
Effect: Allow
Principal:
Service: codepipeline.amazonaws.com
Action: 's3:*'
Resource: !Sub 'arn:aws:s3:::${BucketPrefix}-artefactbucket'
- Sid: AllowTargetAccountsAccessObjects
Effect: Allow
Principal:
AWS:
- !Sub 'arn:aws:iam::${DevAccountNo}:root'
- !Sub 'arn:aws:iam::${ProdAccountNo}:root'
Action: 's3:*'
Resource: !Sub 'arn:aws:s3:::${BucketPrefix}-artefactbucket/*'
- Sid: AllowTargetAccountsAccess
Effect: Allow
Principal:
AWS:
- !Sub 'arn:aws:iam::${DevAccountNo}:root'
- !Sub 'arn:aws:iam::${ProdAccountNo}:root'
Action: 's3:*'
Resource: !Sub 'arn:aws:s3:::${BucketPrefix}-artefactbucket'
CodeBuildServiceRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- 'sts:AssumeRole'
Effect: Allow
Principal:
Service:
- codebuild.amazonaws.com
Path: /
Policies:
- PolicyName: CodeBuildAccess
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Resource:
- !Sub 'arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/codebuild/${ProjectName}_buildlogs'
- !Sub 'arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/codebuild/${ProjectName}_buildlogs:*'
Action:
- 'logs:CreateLogGroup'
- 'logs:CreateLogStream'
- 'logs:PutLogEvents'
- Effect: Allow
Resource: !Sub "arn:aws:s3:::${BucketPrefix}-artefactbucket/*"
Action:
- s3:*
- Effect: Allow
Resource: !Sub "arn:aws:s3:::${BucketPrefix}-artefactbucket"
Action:
- s3:*
- Effect: Allow
Action:
- 'codebuild:*'
- 'codepipeline:*'
Resource: '*'
- Effect: Allow
Action:
- kms:Encrypt
- kms:Decrypt
- kms:ReEncrypt*
- kms:DescribeKey*
- kms:GenerateDataKey
Resource:
Fn::ImportValue:
!Sub '${ProjectName}:ArtefactKMSKey'
- Effect: Allow
Action:
- 'kms:ListKeys'
- 'kms:ListAliases'
Resource: '*'
Tags:
- Key: Project
Value: !Ref ProjectName
# CodeBuild
CodeBuildProject:
Type: AWS::CodeBuild::Project
Properties:
Name: !Sub '${ProjectName}_build'
Description: Builds the backend services and creates a cloudformation template to deploy them
Artifacts:
Type: CODEPIPELINE
Environment:
Type: LINUX_CONTAINER
ComputeType: BUILD_GENERAL1_SMALL
Image: !Sub '${CodeBuildEnvironment}'
EnvironmentVariables:
- Name: BUILD_OUTPUT_BUCKET
Value: !Sub ${BucketPrefix}-artefactbucket
- Name: AWS_REGION
Value: !Sub ${AWS::Region}
ServiceRole: !GetAtt CodeBuildServiceRole.Arn
LogsConfig:
CloudWatchLogs:
GroupName: !Ref CodeBuildProjectLogs
Status: ENABLED
StreamName: MainBuild
Source:
Type: CODEPIPELINE
Tags:
- Key: Project
Value: !Ref ProjectName
CodeBuildProjectLogs:
Type: AWS::Logs::LogGroup
DeletionPolicy: Retain
UpdateReplacePolicy: Retain
Properties:
LogGroupName: !Sub '/aws/codebuild/${ProjectName}_buildlogs'
RetentionInDays: 30
CodeTestServiceRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- 'sts:AssumeRole'
Effect: Allow
Principal:
Service:
- codebuild.amazonaws.com
Path: /
Policies:
- PolicyName: CodeBuildAccess
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Resource:
- !Sub 'arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/codebuild/${ProjectName}_buildlogs'
- !Sub 'arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/codebuild/${ProjectName}_buildlogs:*'
Action:
- 'logs:CreateLogGroup'
- 'logs:CreateLogStream'
- 'logs:PutLogEvents'
- Effect: Allow
Resource: !Sub "arn:aws:s3:::${BucketPrefix}-artefactbucket/*"
Action:
- s3:*
- Effect: Allow
Resource: !Sub "arn:aws:s3:::${BucketPrefix}-artefactbucket"
Action:
- s3:*
- Effect: Allow
Action:
- 'codebuild:*'
- 'codepipeline:*'
Resource: '*'
- Effect: Allow
Action:
- kms:Encrypt
- kms:Decrypt
- kms:ReEncrypt*
- kms:DescribeKey*
- kms:GenerateDataKey
Resource:
Fn::ImportValue:
!Sub '${ProjectName}:ArtefactKMSKey'
- Effect: Allow
Action:
- 'kms:ListKeys'
- 'kms:ListAliases'
Resource: '*'
Tags:
- Key: Project
Value: !Ref ProjectName
# CodeTest
CodeTestProject:
Type: AWS::CodeBuild::Project
Properties:
Name: !Sub '${ProjectName}_test'
Description: Runs a script that tests the deployed artefact
Artifacts:
Type: CODEPIPELINE
Environment:
Type: LINUX_CONTAINER
ComputeType: BUILD_GENERAL1_SMALL
Image: !Sub '${CodeBuildEnvironment}'
EnvironmentVariables:
- Name: BUILD_OUTPUT_BUCKET
Value: !Sub ${BucketPrefix}-artefactbucket
- Name: AWS_REGION
Value: !Sub ${AWS::Region}
ServiceRole: !GetAtt CodeTestServiceRole.Arn
LogsConfig:
CloudWatchLogs:
GroupName: !Ref CodeBuildProjectLogs
Status: ENABLED
StreamName: IntegrationTests
Source:
Type: CODEPIPELINE
BuildSpec: testspec.yml
Tags:
- Key: Project
Value: !Ref ProjectName
# CodePipeline definition and required roles
CFNPipelinePolicy:
Type: AWS::IAM::ManagedPolicy
Properties:
Description: CloudFormation Pipeline Execution Policy
Path: "/"
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'cloudformation:CreateStack'
- 'cloudformation:DescribeStacks'
- 'cloudformation:DeleteStack'
- 'cloudformation:UpdateStack'
- 'cloudformation:CreateChangeSet'
- 'cloudformation:ExecuteChangeSet'
- 'cloudformation:DeleteChangeSet'
- 'cloudformation:DescribeChangeSet'
- 'cloudformation:SetStackPolicy'
- 'cloudformation:SetStackPolicy'
- 'cloudformation:ValidateTemplate'
- 'codebuild:StartBuild'
- 'codebuild:BatchGetBuilds'
Resource: "*"
- Effect: Allow
Resource:
- !Sub 'arn:aws:s3:::${BucketPrefix}-artefactbucket/*'
Action:
- 's3:*'
- Effect: Allow
Resource:
- !Sub 'arn:aws:s3:::${BucketPrefix}-artefactbucket'
Action:
- 's3:*'
PipelineExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- 'sts:AssumeRole'
Effect: Allow
Principal:
Service:
- codepipeline.amazonaws.com
Path: /
ManagedPolicyArns:
- 'arn:aws:iam::aws:policy/AWSCodeCommitFullAccess'
- 'arn:aws:iam::aws:policy/AmazonS3FullAccess'
- !Ref CFNPipelinePolicy
Policies:
- PolicyName: CodePipelineAccess
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- 'iam:PassRole'
- 'lambda:InvokeFunction'
- 'lambda:ListFunctions'
- 'lambda:InvokeAsyc'
Effect: Allow
Resource: '*'
- Effect: Allow
Action: 'sts:AssumeRole'
Resource:
- !Sub arn:aws:iam::${DevAccountNo}:role/${ProjectName}-${AWS::Region}-DeploymentRole
- !Sub arn:aws:iam::${ProdAccountNo}:role/${ProjectName}-${AWS::Region}-DeploymentRole
- Effect: Allow
Action:
- kms:Encrypt
- kms:Decrypt
- kms:ReEncrypt*
- kms:DescribeKey*
- kms:GenerateDataKey
Resource:
Fn::ImportValue:
!Sub '${ProjectName}:ArtefactKMSKey'
- Effect: Allow
Action:
- 'kms:ListKeys'
- 'kms:ListAliases'
Resource: '*'
- Effect: Allow
Action: sns:Publish
Resource: !Ref ProdApprovalGateTopic
Tags:
- Key: Project
Value: !Ref ProjectName
# Approval Gate for Production
ProductionApproversGroup:
Type: AWS::IAM::Group
Properties:
GroupName: !Sub ${ProjectName}-Prod-DeploymentApprovers
Path: /
Policies:
- PolicyName: ApproverPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- codepipeline:ListPipelines
Resource: '*'
Effect: Allow
- Action:
- codepipeline:GetPipeline
- codepipeline:GetPipelineState
- codepipeline:GetPipelineExecution
Effect: Allow
Resource:
- !Sub arn:${AWS::Partition}:codepipeline:${AWS::Region}:${AWS::AccountId}:${ProjectName}
- Action:
- codepipeline:PutApprovalResult
Effect: Allow
Resource: !Sub arn:${AWS::Partition}:codepipeline:${AWS::Region}:${AWS::AccountId}:${ProjectName}/Prod/DeploymentApproval
ProdApprovalGateTopic:
Type: AWS::SNS::Topic
Properties:
DisplayName: !Sub ${ProjectName} Production Deployment Approval Topic
TopicName: !Sub ${ProjectName}-Production-Deployment
Pipeline:
Type: AWS::CodePipeline::Pipeline
Properties:
Tags:
- Key: Project
Value: !Ref ProjectName
ArtifactStore:
Location: !Sub ${BucketPrefix}-artefactbucket
Type: S3
EncryptionKey:
Id:
Fn::ImportValue:
!Sub '${ProjectName}:ArtefactKMSKey'
Type: KMS
Name: !Sub ${ProjectName}_pipeline01
RoleArn: !GetAtt PipelineExecutionRole.Arn
Stages:
- Name: Source
Actions:
- Name: GitHubRepo
ActionTypeId:
Category: Source
Owner: ThirdParty
Provider: GitHub
Version: '1'
Configuration:
Owner: scottjbaldwin
Repo: AWSCodePipelineExample
Branch: main
OAuthToken: "{{resolve:secretsmanager:CovidSafeOAuthToken:SecretString:AccessToken}}"
OutputArtifacts:
- Name: SourceArtefact
RunOrder: 1
- Name: Build
Actions:
- Name: CodeBuild
ActionTypeId:
Category: Build
Owner: AWS
Provider: CodeBuild
Version: '1'
Configuration:
ProjectName: !Ref CodeBuildProject
InputArtifacts:
- Name: SourceArtefact
OutputArtifacts:
- Name: OutputArtefact
RunOrder: 1
- Name: DeployToDev
Actions:
- Name: DeployToDev
Namespace: DevDeploy
RoleArn: !Sub arn:aws:iam::${DevAccountNo}:role/${ProjectName}-${AWS::Region}-DeploymentRole
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: '1'
Configuration:
ActionMode: CREATE_UPDATE
RoleArn: !Sub arn:aws:iam::${DevAccountNo}:role/${ProjectName}-${AWS::Region}-DeploymentRole
StackName: !Sub '${ProjectName}-Dev-Stack'
TemplatePath: OutputArtefact::CovidAPIStack.yml
Capabilities: CAPABILITY_IAM,CAPABILITY_NAMED_IAM,CAPABILITY_AUTO_EXPAND
ParameterOverrides: |
{
"Environment" : "Dev"
}
InputArtifacts:
- Name: OutputArtefact
OutputArtifacts:
- Name: !Sub '${ProjectName}DevDeployment'
RunOrder: 1
- Name: IntegrationTests
ActionTypeId:
Category: Test
Owner: AWS
Provider: CodeBuild
Version: '1'
Configuration:
ProjectName: !Ref CodeTestProject
EnvironmentVariables: '[{"name":"API_URL","value":"#{DevDeploy.ApiURL}","type":"PLAINTEXT"}]'
InputArtifacts:
- Name: SourceArtefact
OutputArtifacts:
- Name: TestArtefact
RunOrder: 2
- Name: DeployToProd
Actions:
- Name: CreateProdChangeSet
RoleArn: !Sub arn:aws:iam::${ProdAccountNo}:role/${ProjectName}-${AWS::Region}-DeploymentRole
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: '1'
Configuration:
ActionMode: CHANGE_SET_REPLACE
RoleArn: !Sub arn:aws:iam::${ProdAccountNo}:role/${ProjectName}-${AWS::Region}-DeploymentRole
StackName: !Sub '${ProjectName}-Prod-Stack'
ChangeSetName: !Sub '${ProjectName}-Prod-ChangeSet'
TemplatePath: OutputArtefact::CovidAPIStack.yml
Capabilities: CAPABILITY_IAM,CAPABILITY_NAMED_IAM
ParameterOverrides: |
{
"Environment" : "Prod"
}
InputArtifacts:
- Name: OutputArtefact
RunOrder: 1
- Name: DeploymentApproval
ActionTypeId:
Category: Approval
Owner: AWS
Provider: Manual
Version: '1'
Configuration:
NotificationArn: !Ref ProdApprovalGateTopic
RunOrder: 2
- Name: ExecuteProdChangeSet
Namespace: ProdDeploy
RoleArn: !Sub arn:aws:iam::${ProdAccountNo}:role/${ProjectName}-${AWS::Region}-DeploymentRole
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: '1'
Configuration:
ActionMode: CHANGE_SET_EXECUTE
RoleArn: !Sub arn:aws:iam::${ProdAccountNo}:role/${ProjectName}-${AWS::Region}-DeploymentRole
StackName: !Sub '${ProjectName}-Prod-Stack'
ChangeSetName: !Sub '${ProjectName}-Prod-ChangeSet'
OutputArtifacts:
- Name: !Sub '${ProjectName}ProdChangeSet'
RunOrder: 3
PipelineSNSTopic:
Type: AWS::SNS::Topic
Properties:
DisplayName: !Sub "${ProjectName}-Pipeline-Notification-Topic"
PipelineSNSTopicPolicy:
Type: AWS::SNS::TopicPolicy
Properties:
PolicyDocument:
Statement:
- Effect: Allow
Principal:
Service: events.amazonaws.com
Action:
- sns:Publish
Resource:
- !Ref PipelineSNSTopic
Topics:
- !Ref PipelineSNSTopic
PipelineNotificationEventRule:
Type: AWS::Events::Rule
Properties:
Description: !Sub "A rule to capture pipeline events from the ${ProjectName} pipeline"
EventPattern:
source:
- aws.codepipeline
detail-type:
- CodePipeline Pipeline Execution State Change
detail:
state:
- FAILED
pipeline:
- !Ref Pipeline
State: ENABLED
Targets:
- Id: SNSTarget
Arn: !Ref PipelineSNSTopic
InputTransformer:
InputPathsMap:
"pipeline" : "$.detail.pipeline"
"executionId" : "$.detail.execution-id"
"region": "$.region"
InputTemplate: "{\"SNSTopic\": \"Pipeline <pipeline>, execution id <executionId> has failed! URL: https://ap-southeast-2.console.aws.amazon.com/codesuite/codepipeline/pipelines/<pipeline>/view?region=<region>\"}"