-
Notifications
You must be signed in to change notification settings - Fork 0
/
pipeline.yml
345 lines (328 loc) · 11.2 KB
/
pipeline.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
AWSTemplateFormatVersion: "2010-09-09"
Description: "[CloudFormation] [Utility] CI/CD Pipeline"
Parameters:
GitHubToken:
Type: String
Description: |
The GitHubToken used to communicate with GitHub
NoEcho: true
Repository:
Type: String
AllowedPattern: "^[-_a-zA-Z0-9]+/[-_a-zA-Z0-9]+$"
ConstraintDescription: |
Ensure you have defined a full path, including the username or
organisation name.
Description: |
The full name of the repository, such as "<username>/<name>".
Branch:
Type: String
AllowedPattern: "^[-_a-zA-Z0-9]+$"
ConstraintDescription: |
Only alpha numeric characters, as well as "-" and "_" are allowed.
Description: |
Branch to use from the repository.
SlackBotToken:
Type: String
NoEcho: true
Description: |
The auth token for the slack bot, enabling it access to post
messages to channels.
Resources:
PipelineArtifactStore:
Type: AWS::S3::Bucket
Properties:
VersioningConfiguration:
Status: Enabled
LifecycleConfiguration:
Rules:
- Status: Enabled
ExpirationInDays: 1
Pipeline:
Type: AWS::CodePipeline::Pipeline
Properties:
RestartExecutionOnUpdate: true
ArtifactStore:
Location: !Ref PipelineArtifactStore
Type: S3
RoleArn: !GetAtt PipelineRole.Arn
Stages:
- Name: Source
Actions:
- Name: GitHub
RunOrder: 1
ActionTypeId:
Category: Source
Owner: ThirdParty
Version: 1
Provider: GitHub
OutputArtifacts:
- Name: GitHubOutput
Configuration:
Owner: !Select [ 0, !Split [ "/", !Ref Repository ] ]
Repo: !Select [ 1, !Split [ "/", !Ref Repository ] ]
Branch: !Ref Branch
OAuthToken: !Ref GitHubToken
- Name: Pipeline
Actions:
- Name: Update
RunOrder: 1
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
InputArtifacts:
- Name: GitHubOutput
Configuration:
ActionMode: CREATE_UPDATE
Capabilities: CAPABILITY_IAM
RoleArn: !GetAtt CloudformationRole.Arn
StackName: !Ref AWS::StackName
TemplatePath: GitHubOutput::pipeline.yml
ParameterOverrides: !Sub |
{
"GitHubToken": "${GitHubToken}",
"SlackBotToken": "${SlackBotToken}",
"Repository": "${Repository}",
"Branch": "${Branch}"
}
- Name: Build
Actions:
- Name: Build
RunOrder: 1
InputArtifacts:
- Name: GitHubOutput
ActionTypeId:
Category: Build
Owner: AWS
Version: 1
Provider: CodeBuild
OutputArtifacts:
- Name: BuildOutput
Configuration:
ProjectName: !Ref Build
- Name: Release
Actions:
- Name: Create
RunOrder: 1
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
InputArtifacts:
- Name: BuildOutput
- Name: GitHubOutput
Configuration:
ActionMode: CHANGE_SET_REPLACE
Capabilities: CAPABILITY_IAM
RoleArn: !GetAtt CloudformationRole.Arn
StackName: !Sub "${AWS::StackName}-service"
ChangeSetName: !Sub "${AWS::StackName}-service"
TemplateConfiguration: GitHubOutput::config.json
TemplatePath: BuildOutput::template.yml
ParameterOverrides: !Sub |
{
"Token": "${SlackBotToken}"
}
- Name: Deploy
RunOrder: 3
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
Configuration:
ActionMode: CHANGE_SET_EXECUTE
Capabilities: CAPABILITY_IAM
ChangeSetName: !Sub "${AWS::StackName}-service"
RoleArn: !GetAtt CloudformationRole.Arn
StackName: !Sub "${AWS::StackName}-service"
- Name: Templates
Actions:
- Name: CodeBuild
RunOrder: 1
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
InputArtifacts:
- Name: GitHubOutput
Configuration:
ActionMode: CREATE_UPDATE
Capabilities: CAPABILITY_IAM
RoleArn: !GetAtt CloudformationRole.Arn
StackName: !Ref AWS::StackName
StackName: !Sub "${AWS::StackName}-template-codebuild"
TemplatePath: GitHubOutput::templates/codebuild.yml
ParameterOverrides: !Sub |
{
"Key": "/Public/${Repository}/Templates/CodeBuild"
}
- Name: CodePipeline
RunOrder: 1
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
InputArtifacts:
- Name: GitHubOutput
Configuration:
ActionMode: CREATE_UPDATE
Capabilities: CAPABILITY_IAM
RoleArn: !GetAtt CloudformationRole.Arn
StackName: !Ref AWS::StackName
StackName: !Sub "${AWS::StackName}-template-codepipeline"
TemplatePath: GitHubOutput::templates/codepipeline.yml
ParameterOverrides: !Sub |
{
"Key": "/Public/${Repository}/Templates/CodePipeline"
}
Build:
Type: AWS::CodeBuild::Project
Properties:
TimeoutInMinutes: 5
ServiceRole: !GetAtt BuildRole.Arn
Cache:
Location: !Sub "${PipelineArtifactStore}/Cache/Build"
Type: S3
Source:
Type: CODEPIPELINE
BuildSpec: buildspec.yml
Environment:
Type: LINUX_CONTAINER
ComputeType: BUILD_GENERAL1_SMALL
Image: aws/codebuild/nodejs:8.11.0
EnvironmentVariables:
- Name: ARTIFACT_STORE
Type: PLAINTEXT
Value: !Ref PipelineArtifactStore
- Name: AWS_ACCOUNT_ID
Type: PLAINTEXT
Value: !Ref AWS::AccountId
Artifacts:
Type: CODEPIPELINE
BuildLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub "/aws/codebuild/${Build}"
RetentionInDays: 1
CloudformationRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: !Sub "cloudformation.${AWS::URLSuffix}"
Version: '2012-10-17'
Path: /
Policies:
- PolicyName: RestrictedCloudFormationAccess
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- 'cloudformation:CreateChangeSet'
Effect: Allow
Resource:
- !Sub "arn:${AWS::Partition}:cloudformation:${AWS::Region}:aws:transform/Serverless-2016-10-31"
- Action:
- 'cloudformation:ExecuteChangeSet'
Effect: Allow
Resource:
- '*'
Condition:
StringLike:
cloudformation:ChangeSetName: !Sub "${AWS::StackName}-*"
- Action:
- '*'
Effect: Allow
Resource:
- '*'
Condition:
ForAllValues:StringLike:
cloudformation:TemplateURL: !Sub "https://s3.${AWS::URLSuffix}/${PipelineArtifactStore}/*"
PipelineRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: !Sub "codepipeline.${AWS::URLSuffix}"
Version: '2012-10-17'
Path: /
Policies:
- PolicyName: CodePipelineAccess
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- 's3:*'
Effect: Allow
Resource:
- !Sub "arn:${AWS::Partition}:s3:::${PipelineArtifactStore}"
- !Sub "arn:${AWS::Partition}:s3:::${PipelineArtifactStore}/*"
- Action:
- 'codebuild:*'
Effect: Allow
Resource:
- !Sub "arn:${AWS::Partition}:codebuild:${AWS::Region}:${AWS::AccountId}:project/${Build}"
- Action:
- 'cloudformation:CreateStack'
- 'cloudformation:DescribeStacks'
- 'cloudformation:DeleteStack'
- 'cloudformation:UpdateStack'
- 'cloudformation:CreateChangeSet'
- 'cloudformation:ExecuteChangeSet'
- 'cloudformation:DeleteChangeSet'
- 'cloudformation:DescribeChangeSet'
- 'cloudformation:SetStackPolicy'
Effect: Allow
Resource:
- !Sub "arn:${AWS::Partition}:cloudformation:${AWS::Region}:${AWS::AccountId}:stack/${AWS::StackName}*/*"
- Action:
- 'iam:PassRole'
Effect: Allow
Resource:
- !GetAtt CloudformationRole.Arn
BuildRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: !Sub "codebuild.${AWS::URLSuffix}"
Version: '2012-10-17'
Path: /
Policies:
- PolicyName: CodeBuildPackageAccess
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Effect: Allow
Resource: '*'
- Action:
- 's3:*'
Effect: Allow
Resource:
- !GetAtt PipelineArtifactStore.Arn
- !Sub "${PipelineArtifactStore.Arn}/*"
Outputs:
BuildConsoleURL:
Description: Build URL
Value: !Sub "https://console.aws.amazon.com/codebuild/home?region=${AWS::Region}#/projects/${Build}/view"
PipelineConsoleURL:
Description: Pipeline URL
Value: !Sub "https://console.aws.amazon.com/codepipeline/home?region=${AWS::Region}#/view/${Pipeline}"