-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipeformation.template.yaml
454 lines (446 loc) · 14.6 KB
/
pipeformation.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
AWSTemplateFormatVersion: "2010-09-09"
Description: "Pipeline configuration to deploy CloudFormation templates from
Github to single account. Stack name max 32 characters."
Parameters:
ParamGithubAccount:
Type: String
Description: GitHub account hosting the source repository for the pipeline.
ParamGithubRepo:
Type: String
Description: GitHub repository that serves as the source for the pipeline.
ParamGithubBranch:
Type: String
Default: main
Description: GitHub branch to serve as the source for the pipeline
ParamStackName:
Type: String
Description: Name of Stack to be updated.
ParamTemplateFile:
Type: String
Description: "Name of CloudFormation template file in the repository
to use for updating stack."
ParamConfigFile:
Type: String
Description: "(Optional) Name of the CloudFormation configuration file (json)
containing the parameter values to use for updating stack."
ParamApprovalStage:
Type: String
AllowedValues:
- true
- false
Description: Inserts an approval stage before executing the change set.
Default: true
ParamDetectChanges:
Type: String
AllowedValues:
- true
- false
Description: "Determines whether the pipeline will automatically
be started on a commit to the git branch and repo specified.
If set to 'true', the pipeline starts automatically when
the commit is made.
If set to 'false', the pipeline only runs if it is
started manually."
Default: false
ParamBuildStage:
Type: String
AllowedValues:
- true
- false
Description: "Determines whether a build stage will be included in the pipeline.
This will run the aws cloudformation package command for packaging
local artifacts that the CloudFormation template references.
This is required where the template includes a Transform section,
for example, where serverless resources are included.
Set to 'true' to include a build stage.
Set to 'false' to not include a build stage."
Default: true
Conditions:
CondApprovalStage: !Equals
- !Ref ParamApprovalStage
- true
CondConfigFile: !Not
- !Equals
- !Ref ParamConfigFile
- ''
CondDetectChanges:
!Equals
- !Ref ParamDetectChanges
- true
CondBuildStage:
!Equals
- !Ref ParamBuildStage
- true
Resources:
IAMRoleCodeBuildProject:
Type: AWS::IAM::Role
Condition: CondBuildStage
Properties:
Policies:
-
PolicyName: ArtifactBucketObjects
PolicyDocument:
Version: 2012-10-17
Statement:
-
Effect: Allow
Action:
- s3:PutObject
- s3:GetObject
- s3:GetObjectVersion
Resource:
- Fn::Join: ['',['arn:aws:s3:::',!Ref S3BucketArtifactStore,'/*']]
-
PolicyName: CWLogStream
PolicyDocument:
Version: 2012-10-17
Statement:
-
Effect: Allow
Action:
- logs:CreateLogStream
- logs:PutLogEvents
Resource:
- !Sub arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/codebuild/*
-
PolicyName: CWLogGroup
PolicyDocument:
Version: 2012-10-17
Statement:
-
Effect: Allow
Action:
- logs:CreateLogGroup
Resource:
- !Sub arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/codebuild/*
-
PolicyName: ArtifactBucket
PolicyDocument:
Version: 2012-10-17
Statement:
-
Effect: Allow
Action:
- s3:GetBucketAcl
- s3:GetBucketLocation
Resource:
- Fn::Join: ['',['arn:aws:s3:::',!Ref S3BucketArtifactStore]]
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
-
Effect: Allow
Principal:
Service:
- codebuild.amazonaws.com
Action: sts:AssumeRole
IAMRoleCodePipelinePipeline:
Type: AWS::IAM::Role
Properties:
Policies:
-
PolicyName: IAMPass
PolicyDocument:
Statement:
-
Effect: Allow
Action: iam:PassRole
Resource: !GetAtt IAMRoleCloudformation.Arn
Version: 2012-10-17
-
PolicyName: Codestar
PolicyDocument:
Statement:
-
Effect: Allow
Action: codestar-connections:UseConnection
Resource: !Ref CodeStarConnectionsConnectionGitHub
Version: 2012-10-17
-
!If
- CondBuildStage
- PolicyName: CodeBuild
PolicyDocument:
Statement:
-
Effect: Allow
Action:
- codebuild:BatchGetBuilds
- codebuild:StartBuild
- codebuild:BatchGetBuildBatches
- codebuild:StartBuildBatch
Resource: !GetAtt CodeBuildProject.Arn
Version: 2012-10-17
- !Ref AWS::NoValue
-
PolicyName: Cloudformation
PolicyDocument:
Statement:
-
Effect: Allow
Action:
- cloudformation:DescribeStacks
- cloudformation:UpdateStack
- cloudformation:CreateChangeSet
- cloudformation:DeleteChangeSet
- cloudformation:DescribeChangeSet
- cloudformation:ExecuteChangeSet
Resource:
- !Sub arn:aws:cloudformation:${AWS::Region}:${AWS::AccountId}:stack/${AWS::StackName}/*
- !Sub arn:aws:cloudformation:${AWS::Region}:${AWS::AccountId}:stack/${ParamStackName}/*
Version: 2012-10-17
-
PolicyName: S3BucketAccess
PolicyDocument:
Statement:
-
Effect: Allow
Action:
- s3:ListBucket
- s3:GetBucketPolicy
- s3:GetBucketLocation
Resource:
- Fn::Join: ['',['arn:aws:s3:::',!Ref S3BucketArtifactStore]]
Version: 2012-10-17
-
PolicyName: S3ObjectAccess
PolicyDocument:
Statement:
-
Effect: Allow
Action:
- s3:PutObject
- s3:GetObject
- s3:PutObjectACL
- s3:GetObjectACL
Resource:
- Fn::Join: ['',['arn:aws:s3:::',!Ref S3BucketArtifactStore, '/*']]
Version: 2012-10-17
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
-
Effect: Allow
Principal:
Service:
- codepipeline.amazonaws.com
Action:
- sts:AssumeRole
IAMRoleCloudformation:
Type: AWS::IAM::Role
Properties:
Policies:
-
PolicyName: CloudformationStackDeployments
PolicyDocument:
Statement:
-
Effect: Allow
Action:
- cloudformation:*
- ec2:*
- iam:CreateRole
- iam:CreatePolicy
- iam:GetRole
- iam:DeleteRole
- iam:PutRolePolicy
- iam:DeleteRolePolicy
- s3:*
- lambda:*
- sqs:*
- dynamodb:*
- iam:*
- logs:*
- cloudwatch:*
- events:*
- codestar-connections:PassConnection
- ssm:*
- apigateway:*
Resource: "*"
Version: 2012-10-17
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
-
Effect: Allow
Principal:
Service:
- cloudformation.amazonaws.com
Action:
- sts:AssumeRole
S3BucketArtifactStore:
Type: AWS::S3::Bucket
Properties:
AccessControl: Private
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: AES256
VersioningConfiguration:
Status: "Enabled"
LifecycleConfiguration:
Rules:
-
Status: "Enabled"
ExpirationInDays: 30
Id: Remove after 30 days
NoncurrentVersionExpirationInDays: 30
CodeBuildProject:
Type: AWS::CodeBuild::Project
Condition: CondBuildStage
Properties:
Artifacts:
Type: CODEPIPELINE
ConcurrentBuildLimit: 1
Environment:
ComputeType: BUILD_GENERAL1_SMALL
EnvironmentVariables:
-
Name: S3_BUCKET_ARTIFACT_STORE
Value: !Ref S3BucketArtifactStore
-
Name: CFN_TEMPLATE
Value: !Ref ParamTemplateFile
Image: aws/codebuild/standard:5.0
Type: LINUX_CONTAINER
LogsConfig:
CloudWatchLogs:
Status: ENABLED
QueuedTimeoutInMinutes: 5
ResourceAccessRole: !GetAtt IAMRoleCodeBuildProject.Arn
ServiceRole: !GetAtt IAMRoleCodeBuildProject.Arn
Source:
BuildSpec: |
version: 0.2
phases:
install:
commands:
- printenv
- ls -R
build:
commands:
- aws cloudformation package --template-file $CFN_TEMPLATE --s3-bucket $S3_BUCKET_ARTIFACT_STORE --output-template-file $CFN_TEMPLATE
- ls -R
artifacts:
files:
- '**/*'
discard-paths: no
Type: CODEPIPELINE
TimeoutInMinutes: 5
CodeStarConnectionsConnectionGitHub:
Type: AWS::CodeStarConnections::Connection
Properties:
ConnectionName: !Ref AWS::StackName
ProviderType: GitHub
CodePipelinePipeline:
Type: AWS::CodePipeline::Pipeline
Properties:
ArtifactStore:
Location: !Ref S3BucketArtifactStore
Type: S3
RestartExecutionOnUpdate: false
RoleArn: !GetAtt IAMRoleCodePipelinePipeline.Arn
Stages:
-
Name: SourceStage
Actions:
-
ActionTypeId:
Category: Source
Owner: AWS
Provider: CodeStarSourceConnection
Version: 1
Configuration:
ConnectionArn: !Ref CodeStarConnectionsConnectionGitHub
FullRepositoryId: !Sub "${ParamGithubAccount}/${ParamGithubRepo}"
BranchName: !Ref ParamGithubBranch
DetectChanges:
!If
- CondDetectChanges
- true
- false
Name: SourceAction
OutputArtifacts:
- Name: SourceActionOutput
RunOrder: 1
-
!If
- CondBuildStage
- Name: BuildStage
Actions:
-
ActionTypeId:
Category: Build
Owner: AWS
Provider: CodeBuild
Version: 1
Configuration:
ProjectName: !Ref CodeBuildProject
InputArtifacts:
- Name: SourceActionOutput
Name: BuildAction
OutputArtifacts:
- Name: BuildActionOutput
#RoleArn: !GetAtt IAMRoleCodePipelinePipeline.Arn
RunOrder: 1
- !Ref AWS::NoValue
-
Name: CreateChangeSetDeployStage
Actions:
-
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
Configuration:
ActionMode: CHANGE_SET_REPLACE
StackName: !Ref ParamStackName
Capabilities: CAPABILITY_IAM,CAPABILITY_AUTO_EXPAND
ChangeSetName: !Sub ${ParamStackName}-ChangeSet
RoleArn: !GetAtt IAMRoleCloudformation.Arn
TemplatePath: !Sub "BuildActionOutput::${ParamTemplateFile}"
TemplateConfiguration: !Sub "BuildActionOutput::${ParamConfigFile}"
InputArtifacts:
!If
- CondBuildStage
- - Name: BuildActionOutput
- - Name: SourceActionOutput
Name: CreateChangeSetAction
OutputArtifacts:
- Name: CreateChangeSetActionOutput
RunOrder: 1
-
!If
- CondApprovalStage
- Name: ChangeSetApprovalStage
Actions:
-
ActionTypeId:
Category: Approval
Owner: AWS
Provider: Manual
Version: 1
Configuration:
CustomData: Please approve the change set.
RunOrder: 1
Name: ChangeSetApprovalStageAction
- !Ref "AWS::NoValue"
-
Name: ExecuteChangeSetDeployStage
Actions:
-
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
Configuration:
ActionMode: CHANGE_SET_EXECUTE
StackName: !Ref ParamStackName
Capabilities: CAPABILITY_IAM,CAPABILITY_AUTO_EXPAND
ChangeSetName: !Sub ${ParamStackName}-ChangeSet
InputArtifacts:
- Name: CreateChangeSetActionOutput
Name: ExecuteChangeSetAction
RunOrder: 1