-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpipeline-cf.yml
400 lines (400 loc) · 14.2 KB
/
pipeline-cf.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
AWSTemplateFormatVersion: '2010-09-09'
Parameters:
CodeRepoName:
Type: String
Description: 'The name for the CodeCommit repository'
CodeRepoBranchName:
Type: String
Default: master
Description: 'The branch name to tie into the CodePipeline pipeline'
CodePipelineName:
Type: String
Description: 'The name for the CodePipeline pipeline'
CustomDomainZoneId:
Type: String
Default: ''
Description: 'The Route 53 Zone ID that will be used to create the A record referred to in the "custom_domain" parameter'
CustomDomain:
Type: String
Default: ''
Description: The domain name for which an A record pointing to the CloudFront distribution will be created in Route53
CustomApiDomainZoneId:
Type: String
Default: ''
Description: 'The Route 53 Zone ID that will be used to create the A record referred to in the "custom_domain" parameter'
CustomApiDomain:
Type: String
Default: ''
Description: The domain name for which an A record pointing to the CloudFront distribution will be created in Route53
EnvironmentName:
Type: String
Default: ''
Description: Environment name, can be prepended to the HTML title tag
Resources:
CodeCommitRepo:
Type: AWS::CodeCommit::Repository
Properties:
RepositoryName: !Ref CodeRepoName
IAMRoleCodePipeline:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- sts:AssumeRole
Effect: Allow
Principal:
Service:
- codepipeline.amazonaws.com
Policies:
- PolicyName: !Sub 'AWSCodePipelineServiceRole-${AWS::Region}-${CodePipelineName}'
PolicyDocument:
Version: 2012-10-17
Statement: # This statement is copied from the default one generated by CodePipeline using the AWS Console UI
- Action:
- iam:PassRole
Resource: "*"
Effect: Allow
Condition:
StringEqualsIfExists:
iam:PassedToService:
- cloudformation.amazonaws.com
- elasticbeanstalk.amazonaws.com
- ec2.amazonaws.com
- ecs-tasks.amazonaws.com
- Action:
- codecommit:CancelUploadArchive
- codecommit:GetBranch
- codecommit:GetCommit
- codecommit:GetUploadArchiveStatus
- codecommit:UploadArchive
Resource: "*"
Effect: Allow
- Action:
- codedeploy:CreateDeployment
- codedeploy:GetApplication
- codedeploy:GetApplicationRevision
- codedeploy:GetDeployment
- codedeploy:GetDeploymentConfig
- codedeploy:RegisterApplicationRevision
Resource: "*"
Effect: Allow
- Action:
- codestar-connections:UseConnection
Resource: "*"
Effect: Allow
- Action:
- elasticbeanstalk:*
- ec2:*
- elasticloadbalancing:*
- autoscaling:*
- cloudwatch:*
- s3:*
- sns:*
- cloudformation:*
- rds:*
- sqs:*
- ecs:*
Resource: "*"
Effect: Allow
- Action:
- lambda:InvokeFunction
- lambda:ListFunctions
Resource: "*"
Effect: Allow
- Action:
- opsworks:CreateDeployment
- opsworks:DescribeApps
- opsworks:DescribeCommands
- opsworks:DescribeDeployments
- opsworks:DescribeInstances
- opsworks:DescribeStacks
- opsworks:UpdateApp
- opsworks:UpdateStack
Resource: "*"
Effect: Allow
- Action:
- cloudformation:CreateStack
- cloudformation:DeleteStack
- cloudformation:DescribeStacks
- cloudformation:UpdateStack
- cloudformation:CreateChangeSet
- cloudformation:DeleteChangeSet
- cloudformation:DescribeChangeSet
- cloudformation:ExecuteChangeSet
- cloudformation:SetStackPolicy
- cloudformation:ValidateTemplate
Resource: "*"
Effect: Allow
- Action:
- codebuild:BatchGetBuilds
- codebuild:StartBuild
- codebuild:BatchGetBuildBatches
- codebuild:StartBuildBatch
Resource: "*"
Effect: Allow
- Effect: Allow
Action:
- devicefarm:ListProjects
- devicefarm:ListDevicePools
- devicefarm:GetRun
- devicefarm:GetUpload
- devicefarm:CreateUpload
- devicefarm:ScheduleRun
Resource: "*"
- Effect: Allow
Action:
- servicecatalog:ListProvisioningArtifacts
- servicecatalog:CreateProvisioningArtifact
- servicecatalog:DescribeProvisioningArtifact
- servicecatalog:DeleteProvisioningArtifact
- servicecatalog:UpdateProduct
Resource: "*"
- Effect: Allow
Action:
- cloudformation:ValidateTemplate
Resource: "*"
- Effect: Allow
Action:
- ecr:DescribeImages
Resource: "*"
- Effect: Allow
Action:
- states:DescribeExecution
- states:DescribeStateMachine
- states:StartExecution
Resource: "*"
- Effect: Allow
Action:
- appconfig:StartDeployment
- appconfig:StopDeployment
- appconfig:GetDeployment
Resource: "*"
S3Bucket:
Type: AWS::S3::Bucket
IAMRoleCodeBuild:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- sts:AssumeRole
Effect: Allow
Principal:
Service:
- codebuild.amazonaws.com
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AdministratorAccess
IAMRoleCloudFormation:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- sts:AssumeRole
Effect: Allow
Principal:
Service:
- cloudformation.amazonaws.com
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AdministratorAccess
CodeBuildLambdasProject:
Type: AWS::CodeBuild::Project
Properties:
Artifacts:
Type: CODEPIPELINE
Environment:
ComputeType: BUILD_GENERAL1_SMALL
Image: aws/codebuild/standard:4.0
Type: LINUX_CONTAINER
ServiceRole: !GetAtt IAMRoleCodeBuild.Arn
Source:
Type: CODEPIPELINE
BuildSpec: build-buildspec.yml
CodeBuildFrontendProject:
Type: AWS::CodeBuild::Project
Properties:
Artifacts:
Type: CODEPIPELINE
Environment:
ComputeType: BUILD_GENERAL1_SMALL
Image: aws/codebuild/standard:4.0
Type: LINUX_CONTAINER
ServiceRole: !GetAtt IAMRoleCodeBuild.Arn
Source:
Type: CODEPIPELINE
BuildSpec: deploy-buildspec.yml
CodePipeline:
Type: AWS::CodePipeline::Pipeline
Properties:
Name: !Ref CodePipelineName
RoleArn: !GetAtt IAMRoleCodePipeline.Arn
ArtifactStore:
Location: !Ref S3Bucket
Type: S3
Stages:
- Name: Source
Actions:
- ActionTypeId:
Category: Source
Owner: AWS
Provider: CodeCommit
Version: 1
Name: Source
Configuration:
RepositoryName: !Ref CodeRepoName
BranchName: !Ref CodeRepoBranchName
PollForSourceChanges: False
OutputArtifacts:
- Name: SourceArtifact
- Name: BuildLambdas
Actions:
- ActionTypeId:
Category: Build
Owner: AWS
Provider: CodeBuild
Version: 1
Name: Build
Configuration:
ProjectName: !Ref CodeBuildLambdasProject
EnvironmentVariables: !Sub |
[
{
"name": "SAM_RESOURCES_BUCKET",
"value": "${S3Bucket}",
"type": "PLAINTEXT"
}
]
InputArtifacts:
- Name: SourceArtifact
OutputArtifacts:
- Name: BuildArtifact
- Name: DeployCloudformation
Actions:
- ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
Name: DeployFrontend
Configuration:
ActionMode: CREATE_UPDATE
StackName: !Sub 'CF-${CodePipelineName}-Frontend'
RoleArn: !GetAtt IAMRoleCloudFormation.Arn
TemplatePath: BuildArtifact::frontend/cf.yml
ParameterOverrides: !Sub |
{
"CustomDomainZoneId": "${CustomDomainZoneId}",
"CustomDomain": "${CustomDomain}"
}
Namespace: CloudFormationFrontendOutputs
InputArtifacts:
- Name: BuildArtifact
- ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
Name: DeployVotesService
RunOrder: 2
Configuration:
ActionMode: CREATE_UPDATE
StackName: !Sub 'CF-${CodePipelineName}-VotesService'
RoleArn: !GetAtt IAMRoleCloudFormation.Arn
Capabilities: CAPABILITY_IAM,CAPABILITY_AUTO_EXPAND
TemplatePath: BuildArtifact::services/votes/sam.yml
ParameterOverrides: !Sub |
{
"FrontendCloudFormationStackName": "CF-${CodePipelineName}-Frontend",
"CustomApiDomain": "${CustomApiDomain}",
"CustomApiDomainZoneId": "${CustomApiDomainZoneId}"
}
Namespace: CloudFormationVotesOutputs
InputArtifacts:
- Name: BuildArtifact
- Name: DeployFrontendStaticAssets
Actions:
- ActionTypeId:
Category: Build
Owner: AWS
Provider: CodeBuild
Version: 1
Name: Build
Configuration:
ProjectName: !Ref CodeBuildFrontendProject
EnvironmentVariables: !Sub |
[
{
"name": "FRONTEND_S3_BUCKET",
"value": "#{CloudFormationFrontendOutputs.S3Bucket}",
"type": "PLAINTEXT"
},
{
"name": "API_ENDPOINT",
"value": "#{CloudFormationVotesOutputs.CloudFrontDistribution}",
"type": "PLAINTEXT"
},
{
"name": "API_ID",
"value": "#{CloudFormationVotesOutputs.ApiGatewayId}",
"type": "PLAINTEXT"
},
{
"name": "ENVIRONMENT_NAME",
"value": "${EnvironmentName} - ",
"type": "PLAINTEXT"
}
]
InputArtifacts:
- Name: BuildArtifact
IAMRoleCloudWatchEventRole: # Adopted from: https://docs.aws.amazon.com/codepipeline/latest/userguide/update-change-detection.html#update-change-detection-cfn-codecommit
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- events.amazonaws.com
Action: sts:AssumeRole
Path: /
Policies:
- PolicyName: cwe-pipeline-execution
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action: codepipeline:StartPipelineExecution
Resource: !Sub 'arn:aws:codepipeline:${AWS::Region}:${AWS::AccountId}:${CodePipeline}'
IAMRoleCloudWatchEventRule: # Adopted from: https://docs.aws.amazon.com/codepipeline/latest/userguide/update-change-detection.html#update-change-detection-cfn-codecommit
Type: AWS::Events::Rule
Properties:
EventPattern:
source:
- aws.codecommit
detail-type:
- 'CodeCommit Repository State Change'
resources:
- !Sub 'arn:aws:codecommit:${AWS::Region}:${AWS::AccountId}:${CodeRepoName}'
detail:
event:
- referenceCreated
- referenceUpdated
referenceType:
- branch
referenceName:
- !Ref CodeRepoBranchName
Targets:
- Arn: !Sub 'arn:aws:codepipeline:${AWS::Region}:${AWS::AccountId}:${CodePipeline}'
RoleArn: !GetAtt IAMRoleCloudWatchEventRole.Arn
Id: !Sub 'codepipeline-${CodePipelineName}'
Outputs:
CodeCommitHTTPCloneUrl:
Description: HTTP Git clone url for repository
Value: !GetAtt CodeCommitRepo.CloneUrlHttp
Export:
Name: !Sub '${AWS::StackName}:CodeCommitHTTPCloneUrl'