forked from aws/aws-health-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAWSHealthElasticLoadBalancingENILimitReached.json
257 lines (257 loc) · 12.7 KB
/
AWSHealthElasticLoadBalancingENILimitReached.json
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
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Automatically delete unused ENIs that are blocking ELB scaling using Amazon Cloudwatch events and AWS Lambda",
"Metadata": {
"LICENSE": "Copyright 2016 Amazon Web Services, Inc. or its affiliates. All Rights Reserved. This file is licensed to you under the AWS Customer Agreement (the \"License\"). You may not use this file except in compliance with the License. A copy of the License is located at http://aws.amazon.com/agreement/ . This file is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions and limitations under the License.",
"AWS::CloudFormation::Interface": {
"ParameterGroups": [
{
"Label": {
"default": "General Configuration"
},
"Parameters": [
"DryRun",
"MaxENI"
]
}
],
"ParameterLabels": {
"DryRun": {
"default": "Dry Run"
},
"MaxENI": {
"default": "Maximum ENI to process"
}
}
}
},
"Parameters": {
"DryRun": {
"Description": "Set to true to test function without actually deleting ENIs",
"Type": "String",
"Default": "true",
"AllowedValues" : ["true", "false"]
},
"MaxENI": {
"Description": "Number of ENIs to process. Set to 0 to do all the function finds (this may result in account throttling)",
"Type": "Number",
"Default": "100"
}
},
"Resources": {
"LambdaIAMRole": {
"Type": "AWS::IAM::Role",
"Properties": {
"AssumeRolePolicyDocument": {
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"Service": "lambda.amazonaws.com"
},
"Action": "sts:AssumeRole"
}
]
},
"Path": "/",
"Policies": [
{
"PolicyName": "AELBInsufficientENIs",
"PolicyDocument": {
"Version": "2012-10-17",
"Statement": [
{
"Sid": "LambdaLogging",
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": [
"arn:aws:logs:*:*:*"
]
},
{
"Sid": "ENI",
"Action": [
"ec2:DescribeNetworkInterfaces",
"ec2:DeleteNetworkInterface"
],
"Effect": "Allow",
"Resource": "*"
}
]
}
}
]
}
},
"LambdaFunction": {
"Properties": {
"Code": {
"ZipFile": {
"Fn::Join": [
"\n",
[
"// Sample Lambda Function to remove unattached ENIs in the region of the event when AWS Health AWS_ELASTICLOADBALANCING_ENI_LIMIT_REACHED events are generated. ",
"// This is useful for situations where you might have leftover ENIs that are not used and are preventing load balancer scaling",
"'use strict';",
"var AWS = require('aws-sdk');",
"const dryRun = ((process.env.DRY_RUN || 'true') == 'true');",
"const maxEniToProcess = process.env.MAX_ENI || 100;",
"var ec2 = null; // scoping object so both functions can see it",
"",
"//main function which gets AWS Health data from Cloudwatch event",
"exports.handler = (event, context, callback) => {",
" //extract details from Cloudwatch event",
" var eventName = event.detail.eventTypeCode;",
" var region = event.region;",
" const awsHealthSuccessMessage = `Successfully got details from AWS Health event ${eventName} and executed automated action in ${region}. Further details in CloudWatch Logs.`;",
"",
" // we only need to run this automation once per invocation since the issue ",
" // of ENI exhaustion is regional and not dependent on the load balancers in the alert",
" // Event will only trigger for one region so we don't have to loop that",
" AWS.config.update({region: region});",
" AWS.config.update({maxRetries: 3});",
" ec2 = new AWS.EC2(); // creating the object now that we know event region",
" ",
" console.log ('Getting the list of available ENI in region %s', region);",
" var params = {",
" Filters: [{Name: 'status',Values: ['available']}]",
" };",
" ",
" ec2.describeNetworkInterfaces(params, function(err, data) {",
" if (err) ",
" {",
" console.log( region, err, err.stack); // an error occurred",
" callback('Error describing ENIs; check CloudWatch Logs for details');",
" }",
" else ",
" {",
" var numberToProcess = data.NetworkInterfaces.length;",
" if ((maxEniToProcess > 0) && (data.NetworkInterfaces.length > maxEniToProcess)) numberToProcess = maxEniToProcess;",
" console.log('Found %s available ENI; processing %s',data.NetworkInterfaces.length,numberToProcess);",
" // for each interface, remove it",
" for ( var i=0; i < numberToProcess; i+=1)",
" {",
" deleteNetworkInterface(data.NetworkInterfaces[i].NetworkInterfaceId,dryRun); ",
" }",
" ",
" callback(null, awsHealthSuccessMessage); //return success",
" }",
" });",
"};",
"",
"//This function removes an ENI",
"function deleteNetworkInterface (networkInterfaceId, dryrun) {",
" console.log ('Running code to delete ENI %s with Dry Run set to %s', networkInterfaceId, dryrun);",
" var deleteNetworkInterfaceParams = {",
" NetworkInterfaceId: networkInterfaceId,",
" DryRun: dryrun",
" };",
" ec2.deleteNetworkInterface(deleteNetworkInterfaceParams, function(err, data) {",
" if (err) ",
" {",
" switch (err.code)",
" {",
" case 'DryRunOperation':",
" console.log('Dry run attempt complete for %s after %s retries', networkInterfaceId, this.retryCount);",
" break;",
" case 'RequestLimitExceeded':",
" console.log('Request limit exceeded while processing %s after %s retries', networkInterfaceId, this.retryCount);",
" break;",
" default:",
" console.log(networkInterfaceId, err, err.stack); ",
" }",
" }",
" else console.log('ENI %s deleted after %s retries', networkInterfaceId, this.retryCount); // successful response",
" });",
"}",
""
]
]
}
},
"Description": "Delete unused ENIs in response to AWS health events",
"Handler": "index.handler",
"Role": {
"Fn::GetAtt": [
"LambdaIAMRole",
"Arn"
]
},
"Runtime": "nodejs6.10",
"Timeout": 120,
"Environment": {
"Variables": {
"DRY_RUN": {
"Ref": "DryRun"
},
"MAX_ENI": {
"Ref": "MaxENI"
}
}
}
},
"Type": "AWS::Lambda::Function"
},
"LambdaPermission": {
"Type": "AWS::Lambda::Permission",
"Properties": {
"FunctionName": {
"Fn::GetAtt": [
"LambdaFunction",
"Arn"
]
},
"Action": "lambda:InvokeFunction",
"Principal": "events.amazonaws.com",
"SourceArn": {
"Fn::GetAtt": [
"CloudWatchEventRule",
"Arn"
]
}
}
},
"CloudWatchEventRule": {
"Type": "AWS::Events::Rule",
"Properties": {
"Description": "AWS_ELASTICLOADBALANCING_ENI_LIMIT_REACHED",
"EventPattern": {
"source": [
"aws.health"
],
"detail-type": [
"AWS Health Event"
],
"detail": {
"service": [
"ELASTICLOADBALANCING"
],
"eventTypeCategory": [
"issue"
],
"eventTypeCode": [
"AWS_ELASTICLOADBALANCING_ENI_LIMIT_REACHED"
]
}
},
"State": "ENABLED",
"Targets": [
{
"Arn": {
"Fn::GetAtt": [
"LambdaFunction",
"Arn"
]
},
"Id": "InsufficientENIsFunction"
}
]
}
}
}
}