This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathopsworkscm-server-mgmt-pipeline-cfn.yaml
483 lines (480 loc) · 14.8 KB
/
opsworkscm-server-mgmt-pipeline-cfn.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
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
AWSTemplateFormatVersion: 2010-09-09
Description: OpsWorks OpsWorks CM server management pipeline
Parameters:
PipelineRegion:
Type: String
Description: Region for the pipeline
TagPrefix:
Type: String
Description: Prefix to be used everywhere
CodeCommitRepo:
Type: String
Description: OpsWorks CM Control Repo in CodeCommit
CodeCommitBranch:
Type: String
Description: CodeCommit control repo branch
CodeCommitRepoDescription:
Type: String
Description: Description for the OpsWorks CM Control Repo in CodeCommit
LambdaBasicExecutionRole:
Type: String
Description: Lambda Basic Execution Role
LambdaS3Bucket:
Type: String
Description: S3 Bucket where Lambda function zip file is located
LambdaS3Key:
Type: String
Description: S3 Bucket Key to locate the lambda function zip file
Resources:
AWSCodePipelineServiceRole:
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: codepipeline.amazonaws.com
Version: '2012-10-17'
ManagedPolicyArns:
- Ref: oneClickAWSCodePipelineServicegeneric
Path: "/"
Policies: []
RoleName: AWS-CodePipeline-Service
Type: AWS::IAM::Role
CodeBuildTrustPolicyopsworkscmservermgmt:
Properties:
Description: Policy needed for Codebuild
Groups: []
ManagedPolicyName: CodeBuildTrustPolicy-opsworkscm-server-mgmt
PolicyDocument:
Statement:
- Action:
- s3:PutObject
- s3:GetObject
- logs:CreateLogStream
- logs:CreateLogGroup
- logs:PutLogEvents
- ssm:GetParameters
- s3:GetObjectVersion
Effect: Allow
Resource:
- arn:aws:s3:::codepipeline-*
- Fn::Sub: 'arn:aws:ssm:*:${AWS::AccountId}:parameter/CodeBuild/*'
- Fn::Sub: 'arn:aws:logs:*:${AWS::AccountId}:log-group:*'
- Fn::Sub: 'arn:aws:logs:*:${AWS::AccountId}:log-group:*:*'
- Action:
- iam:PassRole
- opsworks-cm:*
Effect: Allow
Resource: "*"
Version: '2012-10-17'
Roles: []
Users: []
Type: AWS::IAM::ManagedPolicy
awsopsworkscmec2roleInstanceProfile:
Properties:
InstanceProfileName: aws-opsworks-cm-ec2-role
Path: "/"
Roles:
- Ref: awsopsworkscmec2roleRole
Type: AWS::IAM::InstanceProfile
awsopsworkscmec2roleRole:
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: ec2.amazonaws.com
Version: '2012-10-17'
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AmazonEC2RoleforSSM
- arn:aws:iam::aws:policy/AWSOpsWorksCMInstanceProfileRole
Path: "/"
Policies: []
RoleName: aws-opsworks-cm-ec2-role
Type: AWS::IAM::Role
awsopsworkscmserviceroleRole:
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: opsworks-cm.amazonaws.com
Version: '2012-10-17'
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSOpsWorksCMServiceRole
Path: "/"
Policies: []
RoleName: aws-opsworks-cm-service-role
Type: AWS::IAM::Role
codebuildopsworkscmmgmtserviceroleRole:
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: codebuild.amazonaws.com
Version: '2012-10-17'
ManagedPolicyArns:
- Ref: CodeBuildTrustPolicyopsworkscmservermgmt
- arn:aws:iam::aws:policy/AmazonSSMFullAccess
Path: "/"
Policies: []
RoleName: code-build-opsworkscm-mgmt-service-role
Type: AWS::IAM::Role
oneClickAWSCodePipelineServicegeneric:
Properties:
Description: Policy needed for Codepipeline
Groups: []
ManagedPolicyName: oneClick_AWS-CodePipeline-Service_generic
PolicyDocument:
Statement:
- Action:
- s3:GetObject
- s3:GetObjectVersion
- s3:GetBucketVersioning
Effect: Allow
Resource: "*"
- Action:
- s3:PutObject
Effect: Allow
Resource:
- arn:aws:s3:::codepipeline*
- arn:aws:s3:::elasticbeanstalk*
- Action:
- codecommit:CancelUploadArchive
- codecommit:GetBranch
- codecommit:GetCommit
- codecommit:GetUploadArchiveStatus
- codecommit:UploadArchive
Effect: Allow
Resource: "*"
- Action:
- codedeploy:CreateDeployment
- codedeploy:GetApplicationRevision
- codedeploy:GetDeployment
- codedeploy:GetDeploymentConfig
- codedeploy:RegisterApplicationRevision
Effect: Allow
Resource: "*"
- Action:
- elasticbeanstalk:*
- ec2:*
- elasticloadbalancing:*
- autoscaling:*
- cloudwatch:*
- s3:*
- sns:*
- cloudformation:*
- rds:*
- sqs:*
- ecs:*
- iam:PassRole
Effect: Allow
Resource: "*"
- Action:
- lambda:InvokeFunction
- lambda:ListFunctions
Effect: Allow
Resource: "*"
- Action:
- opsworks:CreateDeployment
- opsworks:DescribeApps
- opsworks:DescribeCommands
- opsworks:DescribeDeployments
- opsworks:DescribeInstances
- opsworks:DescribeStacks
- opsworks:UpdateApp
- opsworks:UpdateStack
Effect: Allow
Resource: "*"
- Action:
- cloudformation:CreateStack
- cloudformation:DeleteStack
- cloudformation:DescribeStacks
- cloudformation:UpdateStack
- cloudformation:CreateChangeSet
- cloudformation:DeleteChangeSet
- cloudformation:DescribeChangeSet
- cloudformation:ExecuteChangeSet
- cloudformation:SetStackPolicy
- cloudformation:ValidateTemplate
- iam:PassRole
Effect: Allow
Resource: "*"
- Action:
- codebuild:BatchGetBuilds
- codebuild:StartBuild
Effect: Allow
Resource: "*"
Version: '2012-10-17'
Roles: []
Users: []
Type: AWS::IAM::ManagedPolicy
opsworkscmservermgmtlambda1Role:
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Version: '2012-10-17'
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AmazonS3FullAccess
- arn:aws:iam::aws:policy/AWSCodePipelineCustomActionAccess
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
Path: "/"
Policies: []
RoleName: opsworkscm-server-mgmt-lambda1
Type: AWS::IAM::Role
opsworkscmservermgmtlambda2Role:
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Version: '2012-10-17'
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AmazonEC2FullAccess
- arn:aws:iam::aws:policy/AmazonS3FullAccess
- arn:aws:iam::aws:policy/AWSCodePipelineCustomActionAccess
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
- arn:aws:iam::aws:policy/AmazonSNSReadOnlyAccess
Path: "/"
Policies: []
RoleName: opsworkscm-server-mgmt-lambda2
Type: AWS::IAM::Role
opsworkscmservermgmtlambda3Role:
Properties:
AssumeRolePolicyDocument:
Statement:
- Action: sts:AssumeRole
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Version: '2012-10-17'
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AmazonS3FullAccess
- arn:aws:iam::aws:policy/AWSCodePipelineCustomActionAccess
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
- arn:aws:iam::aws:policy/AmazonSNSFullAccess
Path: "/"
Policies: []
RoleName: opsworkscm-server-mgmt-lambda3
Type: AWS::IAM::Role
OpsWorksCMCodeCommitRepo:
Type: 'AWS::CodeCommit::Repository'
Properties:
RepositoryName: !Ref CodeCommitRepo
RepositoryDescription: !Ref CodeCommitRepoDescription
BucketPolicy:
Type: 'AWS::S3::BucketPolicy'
Properties:
Bucket:
!Ref CodePipelineBucket
PolicyDocument:
Id: SSEAndSSLPolicy
Statement:
- Sid: DenyUnEncryptedObjectUploads
Effect: Deny
Principal: "*"
Action: s3:PutObject
Resource:
Fn::Join:
- ""
-
- "arn:aws:s3:::"
-
Ref: "CodePipelineBucket"
- "/*"
Condition:
StringNotEquals:
s3:x-amz-server-side-encryption: aws:kms
- Sid: DenyInsecureConnections
Effect: Deny
Principal: "*"
Action: s3:*
Resource:
Fn::Join:
- ""
-
- "arn:aws:s3:::"
-
Ref: "CodePipelineBucket"
- "/*"
Condition:
Bool:
aws:SecureTransport: 'false'
CodePipelineBucket:
Type: 'AWS::S3::Bucket'
Properties:
BucketName:
Fn::Join: [ "-", [
"codepipeline",
"Ref": "AWS::StackName"
]]
StarterKitBucket:
Type: 'AWS::S3::Bucket'
Properties:
BucketName:
Fn::Join: [ "-", [
"codepipeline",
"Ref": "AWS::StackName",
"starterkit"
]]
CodePipelineLambdaOne:
Type: AWS::Lambda::Function
Properties:
Description: 'This is the place to check if the configuration file contains all required fields'
FunctionName: 'opsworkscm_mgmt_syntax_check'
Role: !GetAtt opsworkscmservermgmtlambda1Role.Arn
Handler: opsworkscm_mgmt_syntax_check.lambda_handler
Runtime: python2.7
Timeout: 300
Code:
S3Bucket:
Fn::Join: [ "-", [
!Ref LambdaS3Bucket,
!Sub "${AWS::Region}"
]]
S3Key: !Ref LambdaS3Key
CodePipelineLambdaTwo:
Type: AWS::Lambda::Function
Properties:
Description: 'This function checks the configuration against runtime environment'
FunctionName: 'opsworkscm_mgmt_live_check'
Role: !GetAtt opsworkscmservermgmtlambda2Role.Arn
Handler: opsworkscm_mgmt_live_check.lambda_handler
Runtime: python2.7
Timeout: 300
Code:
S3Bucket:
Fn::Join: [ "-", [
!Ref LambdaS3Bucket,
!Sub "${AWS::Region}"
]]
S3Key: !Ref LambdaS3Key
CodePipelineLambdaThree:
Type: AWS::Lambda::Function
Properties:
Description: 'This function stages the Starter Kit in the right bucket and sends out the notification'
FunctionName: 'opsworkscm_mgmt_sendNotification'
Role: !GetAtt opsworkscmservermgmtlambda3Role.Arn
Handler: opsworkscm_mgmt_sendNotification.lambda_handler
Runtime: python2.7
Timeout: 300
Code:
S3Bucket:
Fn::Join: [ "-", [
!Ref LambdaS3Bucket,
!Sub "${AWS::Region}"
]]
S3Key: !Ref LambdaS3Key
CodeBuildOpsworksCMServerMgmtProject:
Type: "AWS::CodeBuild::Project"
Properties:
Name: !Sub "CodeBuild-${TagPrefix}"
Description: CodeBuild project to start OpsWorksCM server provisioning process
Environment:
Type: LINUX_CONTAINER
ComputeType: BUILD_GENERAL1_SMALL
Image: aws/codebuild/python:3.5.2
ServiceRole: !Ref codebuildopsworkscmmgmtserviceroleRole
Artifacts:
Type: CODEPIPELINE
Source:
Type: CODEPIPELINE
TimeoutInMinutes: 10
CodeBuildOpsworksCMServerMgmtProjectLogGroup:
Type: AWS::Logs::LogGroup
# DeletionPolicy: Retain
Properties:
LogGroupName: !Join ["", ["/aws/codebuild/", Ref: CodeBuildOpsworksCMServerMgmtProject]]
RetentionInDays: 14
Pipeline:
Type: AWS::CodePipeline::Pipeline
Properties:
Name: !Sub "${TagPrefix}-pipeline"
RoleArn: !GetAtt AWSCodePipelineServiceRole.Arn
ArtifactStore:
Type: S3
Location: !Ref CodePipelineBucket
Stages:
- Name: Source
Actions:
- Name: Source
ActionTypeId:
Category: Source
Owner: AWS
Version: 1
Provider: CodeCommit
Configuration:
PollForSourceChanges: 'true'
RepositoryName: !Ref CodeCommitRepo
BranchName: !Ref CodeCommitBranch
OutputArtifacts:
- Name: OpsWorksCMmgmt
- Name: OpsWorksCMSyntaxCheck
Actions:
- InputArtifacts:
- Name: OpsWorksCMmgmt
Name: PrelimCheck1
ActionTypeId:
Category: Invoke
Owner: AWS
Version: '1'
Provider: Lambda
OutputArtifacts: []
Configuration:
FunctionName: opsworkscm_mgmt_syntax_check
RunOrder: 1
- Name: OpsWorksCMLiveCheck
Actions:
- InputArtifacts:
- Name: OpsWorksCMmgmt
Name: PrelimCheck2
ActionTypeId:
Category: Invoke
Owner: AWS
Version: '1'
Provider: Lambda
OutputArtifacts:
- Name: CreationList
Configuration:
FunctionName: opsworkscm_mgmt_live_check
RunOrder: 1
- Name: CreateOpsWorksCMServer
Actions:
- InputArtifacts:
- Name: CreationList
Name: !Ref TagPrefix
ActionTypeId:
Category: Build
Owner: AWS
Version: '1'
Provider: CodeBuild
OutputArtifacts:
- Name: StarterKit
Configuration:
ProjectName: !Ref CodeBuildOpsworksCMServerMgmtProject
RunOrder: 1
- Name: SendNotification
Actions:
- InputArtifacts:
- Name: StarterKit
Name: PublishSNS
ActionTypeId:
Category: Invoke
Owner: AWS
Version: '1'
Provider: Lambda
OutputArtifacts: []
Configuration:
FunctionName: opsworkscm_mgmt_sendNotification
RunOrder: 1