generated from amazon-archives/__template_MIT-0
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcfnChaos.yml
More file actions
454 lines (438 loc) · 16.6 KB
/
cfnChaos.yml
File metadata and controls
454 lines (438 loc) · 16.6 KB
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: This template creates a FIS experiment to inject chaos in Lambda function usign lambda layers.
Parameters:
UpdateLambdaWithSSMAutomationRoleParam:
Type: String
Default: 'UpdateLambdaWithSSMAutomationRoleParam'
Description: 'Update lambda via SSM Automatio role'
LambdaExecutionRoleName:
Type: String
Default: 'SampleLambdaExecutionRole'
Description: 'Sample Lambda Execution Role'
FISRoleName:
Type: String
Default: 'FISRole'
Description: 'Sample FIS Execution Role'
ChaosDocumentName:
Type: String
Default: 'InjectLambdaChaos'
Description: 'Chaos document name'
LambdaS3Bucket:
Description: 'S3 bucket name in this region where lambda and layers code is kept'
AllowedPattern: '^[0-9A-Za-z\\.\\-_]*(?<!\\.)$'
MinLength: 3
MaxLength: 63
Type: String
JavaFileName:
Description: 'File name for lambda code - Java'
AllowedPattern: '^[0-9A-Za-z\\.\\-_]*(?<!\\.)$'
MinLength: 1
MaxLength: 1024
Type: String
PythonFileName:
Description: 'File name for lambda code - Python'
AllowedPattern: '^[0-9A-Za-z\\.\\-_]*(?<!\\.)$'
MinLength: 1
MaxLength: 1024
Type: String
NodeFileName:
Description: 'File name for lambda code - Node'
AllowedPattern: '^[0-9A-Za-z\\.\\-_]*(?<!\\.)$'
MinLength: 1
MaxLength: 1024
Type: String
JavaLayerFileName:
Description: 'File name for lambda Layer - Java'
AllowedPattern: '^[0-9A-Za-z\\.\\-_]*(?<!\\.)$'
MinLength: 1
MaxLength: 1024
Type: String
PythonLayerFileName:
Description: 'File name for lambda layer - Python'
AllowedPattern: '^[0-9A-Za-z\\.\\-_]*(?<!\\.)$'
MinLength: 1
MaxLength: 1024
Type: String
NodeLayerFileName:
Description: 'File name for lambda layer - Node'
AllowedPattern: '^[0-9A-Za-z\\.\\-_]*(?<!\\.)$'
MinLength: 1
MaxLength: 1024
Type: String
JavaLayerJarName:
Description: 'File name for lambda layer - jar name'
MinLength: 1
MaxLength: 1024
Type: String
Default: 'chaosLambdaLayer.jar'
Metadata:
AWS::CloudFormation::Interface:
ParameterGroups:
-
Label:
default: "IAM Roles"
Parameters:
- LambdaExecutionRoleName
- FISRoleName
- UpdateLambdaWithSSMAutomationRoleParam
-
Label:
default: "Sample Lambda functions"
Parameters:
- LambdaS3Bucket
- JavaFileName
- PythonFileName
- NodeFileName
-
Label:
default: "Chaos - Lambda Layers, Automation document"
Parameters:
- JavaLayerFileName
- PythonLayerFileName
- NodeLayerFileName
- JavaLayerJarName
- ChaosDocumentName
Resources:
UpdateLambdaWithSSMAutomationRole:
Type: 'AWS::IAM::Role'
DeletionPolicy: Delete
Properties:
RoleName:
Ref: UpdateLambdaWithSSMAutomationRoleParam
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: 'ssm.amazonaws.com'
Action: 'sts:AssumeRole'
Policies:
- PolicyName: 'UpdateLambda'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'lambda:UpdateFunctionConfiguration'
- 'lambda:GetFunctionConfiguration'
- 'lambda:GetFunction'
Resource:
- !GetAtt JavaSampleLambda.Arn
- !GetAtt NodeSampleLambda.Arn
- !GetAtt PythonSampleLambda.Arn
- Effect: Allow
Action:
- 'lambda:GetLayerVersion'
Resource:
- !Ref JavaLambdaLayer
- !Ref NodeLambdaLayer
- !Ref PythonLambdaLayer
- PolicyName: 'CreateSSMParam'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'ssm:PutParameter'
- 'ssm:LabelParameterVersion'
- 'ssm:DescribeDocumentParameters'
- 'ssm:GetParameters'
- 'ssm:GetParameter'
- 'ssm:DescribeParameters'
Resource: !Sub 'arn:${AWS::Partition}:ssm:${AWS::Region}:${AWS::AccountId}:parameter/ChaosInjection/*'
LambdaRole:
Type: 'AWS::IAM::Role'
DeletionPolicy: Delete
Properties:
RoleName:
Ref: LambdaExecutionRoleName
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: 'lambda.amazonaws.com'
Action: 'sts:AssumeRole'
Policies:
- PolicyName: 'SSMParamAll'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'ssm:LabelParameterVersion'
- 'ssm:DescribeDocumentParameters'
- 'ssm:GetParameters'
- 'ssm:GetParameter'
- 'ssm:DescribeParameters'
Resource: !Sub 'arn:${AWS::Partition}:ssm:${AWS::Region}:${AWS::AccountId}:parameter/ChaosInjection/*'
JavaSampleLambda:
Type: AWS::Lambda::Function
Properties:
Code:
S3Bucket:
Ref: LambdaS3Bucket
S3Key:
Ref: JavaFileName
Handler: 'com.chaos.examples.App::handleRequest'
Role: !GetAtt LambdaRole.Arn
Runtime: 'java11'
FunctionName: 'JavaChaosInjectionExampleFn'
NodeSampleLambda:
Type: AWS::Lambda::Function
Properties:
Code:
S3Bucket:
Ref: LambdaS3Bucket
S3Key:
Ref: NodeFileName
Handler: 'index.handler'
Role: !GetAtt LambdaRole.Arn
Runtime: 'nodejs18.x'
FunctionName: 'NodeChaosInjectionExampleFn'
PythonSampleLambda:
Type: AWS::Lambda::Function
Properties:
Code:
S3Bucket:
Ref: LambdaS3Bucket
S3Key:
Ref: PythonFileName
Handler: 'lambda_function.lambda_handler'
Role: !GetAtt LambdaRole.Arn
Runtime: 'python3.8'
FunctionName: 'PythonChaosInjectionExampleFn'
JavaLambdaLayer:
Type: AWS::Lambda::LayerVersion
Properties:
CompatibleRuntimes:
- java11
Content:
S3Bucket:
Ref: LambdaS3Bucket
S3Key:
Ref: JavaLayerFileName
Description: 'ChaosInjectionLayer - Java'
LayerName: ChaosInjectionLayerJava
NodeLambdaLayer:
Type: AWS::Lambda::LayerVersion
Properties:
CompatibleRuntimes:
- nodejs18.x
Content:
S3Bucket:
Ref: LambdaS3Bucket
S3Key:
Ref: NodeLayerFileName
Description: 'ChaosInjectionLayer - Node'
LayerName: ChaosInjectionLayerNode
PythonLambdaLayer:
Type: AWS::Lambda::LayerVersion
Properties:
CompatibleRuntimes:
- python3.8
Content:
S3Bucket:
Ref: LambdaS3Bucket
S3Key:
Ref: PythonLayerFileName
Description: 'ChaosInjectionLayer - Python'
LayerName: ChaosInjectionLayerPython
JavaLayerJarFileParameter:
Type: AWS::SSM::Parameter
Properties:
Name: /ChaosInjection/JavaLayerJarFileNameParam
Type: String
Value:
Ref: JavaLayerJarName
Description: SSM Parameter java layer jar name
ChaosDocument:
Type: AWS::SSM::Document
Properties:
DocumentType: Automation
Name:
Ref: ChaosDocumentName
DocumentFormat: YAML
Content:
description: Add Lambda Layer
schemaVersion: '0.3'
assumeRole: "{{assumeRole}}"
parameters:
LayerArn:
type: String
description: LayerArn
default: ''
assumeRole:
type: String
description: assumeRole
default: ''
FunctionName:
type: String
description: FunctionName
default: ''
mainSteps:
- name: Step1
action: aws:executeScript
inputs:
Runtime: python3.7
Handler: handler
InputPayload:
FunctionName: "{{FunctionName}}"
LayerArn: "{{ LayerArn }}"
Script: |-
import boto3
def handler(event, context):
# get existing handler
function_name = event["FunctionName"]
layer_arn = event["LayerArn"]
lambda_client = boto3.client("lambda")
lambda_config_existing = lambda_client.get_function_configuration(FunctionName=function_name)
# get existing handler and timeout
lambda_runtime = lambda_config_existing['Runtime']
existing_handler = lambda_config_existing['Handler']
existing_timeout = lambda_config_existing['Timeout']
existing_memory = lambda_config_existing['MemorySize']
# save values in param store for later use
ssm_client = boto3.client("ssm")
javaLayerJarName = ssm_client.get_parameter(Name='/ChaosInjection/JavaLayerJarFileNameParam')['Parameter']['Value']
ssm_client.put_parameter(Name='/ChaosInjection/' + function_name+'_handler_ssmparam', Value=existing_handler,Type='String',Overwrite=True)
ssm_client.put_parameter(Name='/ChaosInjection/' +function_name+'_timeout_ssmparam', Value=str(existing_timeout),Type='String',Overwrite=True)
ssm_client.put_parameter(Name='/ChaosInjection/' +function_name+'_memory_ssmparam', Value=str(existing_memory),Type='String',Overwrite=True)
new_handler=""
if lambda_runtime.startswith("java"):
lambda_config_details = lambda_client.update_function_configuration(FunctionName=function_name,MemorySize=512,Layers=[layer_arn], Timeout=300,Environment={'Variables': {'JAVA_TOOL_OPTIONS': '-javaagent:"/opt/' + javaLayerJarName + '"'}})
elif lambda_runtime.startswith("node"):
new_handler="layer.layer_handler"
lambda_config_details = lambda_client.update_function_configuration(FunctionName=function_name,Layers=[layer_arn], Timeout=300,Handler=new_handler)
elif lambda_runtime.startswith("python"):
new_handler="pylayer.layer_handler"
lambda_config_details = lambda_client.update_function_configuration(FunctionName=function_name,Layers=[layer_arn], Timeout=300,Handler=new_handler)
# Update target lambda - inject chaos layer, update handler and update the timeout to 5 mins to allow for latency injection.
return
RollbackChaosDocument:
Type: AWS::SSM::Document
Properties:
DocumentType: Automation
Name:
!Join
- '-'
- - Ref: ChaosDocumentName
- 'Rollback'
DocumentFormat: YAML
Content:
description: Add Lambda Layer
schemaVersion: '0.3'
assumeRole: "{{assumeRole}}"
parameters:
LayerArn:
type: String
description: LayerArn
default: ''
assumeRole:
type: String
description: assumeRole
default: ''
FunctionName:
type: String
description: FunctionName
default: ''
mainSteps:
- name: Step1
action: aws:executeScript
inputs:
Runtime: python3.7
Handler: handler
InputPayload:
FunctionName: "{{FunctionName}}"
LayerArn: "{{LayerArn}}"
Script: |-
import boto3
def handler(event, context):
# get existing handler
function_name = event["FunctionName"]
layer_arn = event["LayerArn"]
# get older values in param store for rollback
ssm_client = boto3.client("ssm")
old_handler = ssm_client.get_parameter(Name='/ChaosInjection/' +function_name+'_handler_ssmparam')['Parameter']['Value']
old_timeout= ssm_client.get_parameter(Name='/ChaosInjection/' +function_name+'_timeout_ssmparam')['Parameter']['Value']
old_memory= ssm_client.get_parameter(Name='/ChaosInjection/' +function_name+'_memory_ssmparam')['Parameter']['Value']
# Update target lambda - remove layer, and revert handler and timeout
# environment variable - remove the java one we set.
lambda_client = boto3.client("lambda")
current_config = lambda_client.get_function(FunctionName=function_name)
current_layers = current_config['Configuration']['Layers']
remove_layers = [layer for layer in current_layers if layer['Arn'] != layer_arn ]
lambda_config_details = lambda_client.update_function_configuration(FunctionName=function_name,Layers=remove_layers ,Timeout=int(old_timeout),Handler=old_handler,Environment={},MemorySize=int(old_memory))
return
ExperimentTemplate:
Type: 'AWS::FIS::ExperimentTemplate'
DeletionPolicy: Delete
Properties:
Description: 'Inject chaos in Lambda with pre-configured chaos injection layers'
Actions:
InjectChaos:
ActionId: 'aws:ssm:start-automation-execution'
Parameters:
documentArn:
!Join
- ''
- - !Sub 'arn:${AWS::Partition}:ssm:${AWS::Region}:${AWS::AccountId}:document/'
- Ref: ChaosDocumentName
documentParameters: !Join ["", ["{\"FunctionName\":\"JavaChaosInjectionExampleFn\",\"LayerArn\":\"" , !Ref JavaLambdaLayer ,"\",\"assumeRole\":\"", !GetAtt UpdateLambdaWithSSMAutomationRole.Arn,"\"}" ] ]
maxDuration: 'PT10M'
StopConditions:
- Source: 'none'
RoleArn: !GetAtt FISRole.Arn
Tags:
Name: 'fisChaosInjection'
Targets: {}
FISRole:
Type: 'AWS::IAM::Role'
DeletionPolicy: Delete
Properties:
RoleName:
Ref: FISRoleName
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: 'fis.amazonaws.com'
Action: 'sts:AssumeRole'
Policies:
- PolicyName: 'PassRole'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action: 'iam:PassRole'
Resource: 'arn:aws:iam::*:role/*'
Condition:
StringEquals:
'iam:PassedToService': 'ssm.amazonaws.com'
- PolicyName: 'StartAutomation'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action: 'ssm:StartAutomationExecution'
Resource: "arn:aws:ssm:*:*:automation-definition/*:*"
- PolicyName: 'StopAutomation'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'ssm:GetAutomationExecution'
- 'ssm:StopAutomationExecution'
Resource: 'arn:aws:ssm:*:*:automation-execution/*'
Outputs:
JavaChaosInjectionParam:
Description: The parameter string to update in FIS experiment template for injecting chaos in Java Lambda function
Value: !Join ["", ["{\"FunctionName\":\"JavaChaosInjectionExampleFn\",\"LayerArn\":\"" , !Ref JavaLambdaLayer ,"\",\"assumeRole\":\"", !GetAtt UpdateLambdaWithSSMAutomationRole.Arn,"\"}" ] ]
NodeChaosInjectionParam:
Description: The parameter string to update in FIS experiment template for injecting chaos in Node Lambda function
Value: !Join ["", ["{\"FunctionName\":\"NodeChaosInjectionExampleFn\",\"LayerArn\":\"" , !Ref NodeLambdaLayer ,"\",\"assumeRole\":\"", !GetAtt UpdateLambdaWithSSMAutomationRole.Arn, "\"}" ] ]
PythonChaosInjectionParam:
Description: The parameter string to update in FIS experiment template for injecting chaos in Python Lambda function
Value: !Join ["", ["{\"FunctionName\":\"PythonChaosInjectionExampleFn\",\"LayerArn\":\"" , !Ref PythonLambdaLayer ,"\",\"assumeRole\":\"", !GetAtt UpdateLambdaWithSSMAutomationRole.Arn, "\"}" ] ]