-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCI_CD_Pipeline_with_Linter_and_IAM_Validation.yaml
421 lines (402 loc) · 12.2 KB
/
CI_CD_Pipeline_with_Linter_and_IAM_Validation.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
AWSTemplateFormatVersion: '2010-09-09'
Description: Enhanced CI/CD Pipeline with Efficient Dependency Management, Parallel Testing, Elastic Build Resources, and Deployment
Resources:
# CodeCommit Repository
MyCodeCommitRepository:
Type: AWS::CodeCommit::Repository
Properties:
RepositoryName: MyRepository
RepositoryDescription: Source repository for the CI/CD pipeline
# S3 Bucket for CodePipeline Artifacts
MyArtifactBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: my-artifact-bucket
# CodeBuild Project to Install Dependencies
InstallDependenciesProject:
Type: AWS::CodeBuild::Project
Properties:
Name: InstallDependenciesProject
Source:
Type: CODEPIPELINE
Artifacts:
Type: CODEPIPELINE
Environment:
Type: LINUX_CONTAINER
ComputeType: BUILD_GENERAL1_SMALL
Image: aws/codebuild/standard:5.0
ServiceRole: !GetAtt CodeBuildServiceRole.Arn
TimeoutInMinutes: 20
Cache:
Type: LOCAL
Modes:
- LOCAL_SOURCE_CACHE
- LOCAL_CUSTOM_CACHE
BuildSpec: |
version: 0.2
phases:
install:
commands:
- pip install -r requirements.txt -t ./dependencies
artifacts:
files:
- '**/*'
# CodeBuild Project for CloudFormation Linter
CFNLintBuildProject:
Type: AWS::CodeBuild::Project
Properties:
Name: CFNLintBuildProject
Source:
Type: CODEPIPELINE
Artifacts:
Type: CODEPIPELINE
Environment:
Type: LINUX_CONTAINER
ComputeType: BUILD_GENERAL1_MEDIUM
Image: aws/codebuild/standard:5.0
EnvironmentVariables:
- Name: CFN_TEMPLATE_FILE
Value: template.yaml
ServiceRole: !GetAtt CodeBuildServiceRole.Arn
TimeoutInMinutes: 20
BuildSpec: |
version: 0.2
phases:
install:
commands:
- cp -r dependencies/* /usr/local/lib/python3.8/site-packages/
build:
commands:
- cfn-lint template.yaml
artifacts:
files:
- '**/*'
# CodeBuild Project for IAM Policy Validator
IAMPolicyValidatorBuildProject:
Type: AWS::CodeBuild::Project
Properties:
Name: IAMPolicyValidatorBuildProject
Source:
Type: CODEPIPELINE
Artifacts:
Type: CODEPIPELINE
Environment:
Type: LINUX_CONTAINER
ComputeType: BUILD_GENERAL1_MEDIUM
Image: aws/codebuild/standard:5.0
EnvironmentVariables:
- Name: CFN_TEMPLATE_FILE
Value: template.yaml
ServiceRole: !GetAtt CodeBuildServiceRole.Arn
TimeoutInMinutes: 20
BuildSpec: |
version: 0.2
phases:
install:
commands:
- cp -r dependencies/* /usr/local/lib/python3.8/site-packages/
build:
commands:
- cfn-policy-validator validate --template-file template.yaml
artifacts:
files:
- '**/*'
# CodeBuild Project for Unit Tests with Parallel Testing
UnitTestBuildProject:
Type: AWS::CodeBuild::Project
Properties:
Name: UnitTestBuildProject
Source:
Type: CODEPIPELINE
Artifacts:
Type: CODEPIPELINE
Environment:
Type: LINUX_CONTAINER
ComputeType: BUILD_GENERAL1_MEDIUM # Dynamic allocation will handle scaling
Image: aws/codebuild/standard:5.0
ServiceRole: !GetAtt CodeBuildServiceRole.Arn
TimeoutInMinutes: 20
Cache:
Type: LOCAL
Modes:
- LOCAL_SOURCE_CACHE
- LOCAL_CUSTOM_CACHE
BuildSpec: |
version: 0.2
phases:
install:
commands:
- cp -r dependencies/* /usr/local/lib/python3.8/site-packages/
build:
commands:
- pytest -n auto --maxfail=1 --disable-warnings # Run tests in parallel
artifacts:
files:
- '**/*'
# CodeBuild Project for Deployment
DeploymentBuildProject:
Type: AWS::CodeBuild::Project
Properties:
Name: DeploymentBuildProject
Source:
Type: CODEPIPELINE
Artifacts:
Type: CODEPIPELINE
Environment:
Type: LINUX_CONTAINER
ComputeType: BUILD_GENERAL1_MEDIUM # Dynamic allocation will handle scaling
Image: aws/codebuild/standard:5.0
ServiceRole: !GetAtt CodeBuildServiceRole.Arn
TimeoutInMinutes: 20
BuildSpec: |
version: 0.2
phases:
install:
commands:
- cp -r dependencies/* /usr/local/lib/python3.8/site-packages/
build:
commands:
- echo "Deploying application..."
- aws cloudformation deploy --template-file template.yaml --stack-name my-stack
artifacts:
files:
- '**/*'
# CodePipeline
MyPipeline:
Type: AWS::CodePipeline::Pipeline
Properties:
RoleArn: !GetAtt CodePipelineServiceRole.Arn
ArtifactStore:
Type: S3
Location: !Ref MyArtifactBucket
Stages:
- Name: Source
Actions:
- Name: Source
ActionTypeId:
Category: Source
Owner: AWS
Provider: CodeCommit
Version: 1
OutputArtifacts:
- Name: SourceOutput
Configuration:
RepositoryName: !Ref MyCodeCommitRepository
BranchName: main
- Name: InstallDependencies
Actions:
- Name: InstallDependencies
ActionTypeId:
Category: Build
Owner: AWS
Provider: CodeBuild
Version: 1
InputArtifacts:
- Name: SourceOutput
OutputArtifacts:
- Name: DependenciesOutput
Configuration:
ProjectName: !Ref InstallDependenciesProject
- Name: CFNLintBuild
Actions:
- Name: CFNLintBuild
ActionTypeId:
Category: Build
Owner: AWS
Provider: CodeBuild
Version: 1
InputArtifacts:
- Name: DependenciesOutput
OutputArtifacts:
- Name: CFNLintBuildOutput
Configuration:
ProjectName: !Ref CFNLintBuildProject
- Name: IAMPolicyValidatorBuild
Actions:
- Name: IAMPolicyValidatorBuild
ActionTypeId:
Category: Build
Owner: AWS
Provider: CodeBuild
Version: 1
InputArtifacts:
- Name: DependenciesOutput
OutputArtifacts:
- Name: IAMPolicyValidatorBuildOutput
Configuration:
ProjectName: !Ref IAMPolicyValidatorBuildProject
- Name: UnitTestBuild
Actions:
- Name: UnitTestBuild
ActionTypeId:
Category: Build
Owner: AWS
Provider: CodeBuild
Version: 1
InputArtifacts:
- Name: DependenciesOutput
OutputArtifacts:
- Name: UnitTestBuildOutput
Configuration:
ProjectName: !Ref UnitTestBuildProject
- Name: Deploy
Actions:
- Name: Deploy
ActionTypeId:
Category: Deploy
Owner: AWS
Provider: CloudFormation
Version: 1
InputArtifacts:
- Name: UnitTestBuildOutput
Configuration:
ActionMode: CREATE_UPDATE
StackName: MyStack
Capabilities: CAPABILITY_IAM
TemplatePath: UnitTestBuildOutput::template.yaml
# IAM Role for CodeBuild
CodeBuildServiceRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: codebuild.amazonaws.com
Action: sts:AssumeRole
Policies:
- PolicyName: CodeBuildPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
- s3:GetObject
- s3:PutObject
- s3:GetBucketLocation
- codepipeline:PutJobSuccessResult
- codepipeline:PutJobFailureResult
Resource: '*'
# IAM Role for CodePipeline
CodePipelineServiceRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: codepipeline.amazonaws.com
Action: sts:AssumeRole
Policies:
- PolicyName: CodePipelinePolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- s3:*
- codecommit:*
- codebuild:*
- cloudformation:*
- iam:PassRole
Resource: '*'
# Buildspec for CodeBuild
CodeBuildBuildspec:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref MyArtifactBucket
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal: '*'
Action: 's3:GetObject'
Resource: !Sub 'arn:aws:s3:::${MyArtifactBucket}/*'
# Launch Template for Build Instances
BuildLaunchTemplate:
Type: AWS::EC2::LaunchTemplate
Properties:
LaunchTemplateData:
ImageId: ami-0abcdef1234567890 # Replace with your AMI ID
InstanceType: t3.medium
SecurityGroupIds:
- !Ref BuildSecurityGroup
KeyName: my-key-pair # Replace with your key pair name
LaunchTemplateName: BuildLaunchTemplate
# Security Group for Build Instances
BuildSecurityGroup:
Type: AWS::EC2::SecurityGroup
Properties:
GroupDescription: Security group for build instances
VpcId: vpc-12345678 # Replace with your VPC ID
# Auto Scaling Group
BuildAutoScalingGroup:
Type: AWS::AutoScaling::AutoScalingGroup
Properties:
LaunchTemplate:
LaunchTemplateId: !Ref BuildLaunchTemplate
Version: 1
MinSize: 1
MaxSize: 5
DesiredCapacity: 1
VPCZoneIdentifier:
- subnet-12345678 # Replace with your subnet ID
# Scale Up Policy
ScaleUpPolicy:
Type: AWS::AutoScaling::ScalingPolicy
Properties:
AutoScalingGroupName: !Ref BuildAutoScalingGroup
PolicyType: SimpleScaling
ScalingAdjustment: 1
Cooldown: 300
# Scale Down Policy
ScaleDownPolicy:
Type: AWS::AutoScaling::ScalingPolicy
Properties:
AutoScalingGroupName: !Ref BuildAutoScalingGroup
PolicyType: SimpleScaling
ScalingAdjustment: -1
Cooldown: 300
# CloudWatch Alarm to Scale Up
CPUAlarmHigh:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmDescription: "Scale-up if CPU > 70%"
MetricName: CPUUtilization
Namespace: AWS/EC2
Statistic: Average
Period: 300
EvaluationPeriods: 1
Threshold: 70
ComparisonOperator: GreaterThanThreshold
AlarmActions:
- !Ref ScaleUpPolicy
Dimensions:
- Name: AutoScalingGroupName
Value: !Ref BuildAutoScalingGroup
# CloudWatch Alarm to Scale Down
CPUAlarmLow:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmDescription: "Scale-down if CPU < 30%"
MetricName: CPUUtilization
Namespace: AWS/EC2
Statistic: Average
Period: 300
EvaluationPeriods: 1
Threshold: 30
ComparisonOperator: LessThanThreshold
AlarmActions:
- !Ref ScaleDownPolicy
Dimensions:
- Name: AutoScalingGroupName
Value: !Ref BuildAutoScalingGroup
Outputs:
CodeCommitRepositoryCloneUrl:
Description: URL to clone the CodeCommit repository
Value: !GetAtt MyCodeCommitRepository.CloneUrlHttp