forked from mlevit/aws-auto-cleanup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
serverless.yml
415 lines (409 loc) · 12.5 KB
/
serverless.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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
service: auto-cleanup-app
custom:
log_level: INFO # DEBUG for dev | INFO for prod
region: ${opt:region, "ap-southeast-2"} # AWS deployment region
pythonRequirements:
layer:
name: ${self:service}-${self:provider.stage}-requirements
compatibleRuntimes:
- python3.9
slim: true
provider:
name: aws
runtime: python3.9
stage: ${opt:stage, "prod"} # overwrite via CLI "--stage dev"
region: ${self:custom.region}
apiGateway:
minimumCompressionSize: 1024
iam:
role:
statements:
- Effect: Allow
Action: "*"
Resource: "*"
Condition:
ForAnyValue:StringEquals:
aws:CalledVia:
- cloudformation.amazonaws.com
- Effect: Allow
Action:
- airflow:DeleteEnvironment
- airflow:GetEnvironment
- airflow:ListEnvironments
Resource: "*"
- Effect: Allow
Action:
- amplify:DeleteApp
- amplify:ListApps
Resource: "*"
- Effect: Allow
Action:
- cloudformation:DeleteStack
- cloudformation:DescribeStacks
- cloudformation:DescribeStackResources
- cloudformation:ListStackResources
- cloudformation:ListStacks
- cloudformation:UpdateTerminationProtection
Resource: "*"
- Effect: Allow
Action:
- codecommit:GetRepository
Resource: "*"
- Effect: Allow
Action:
- dynamodb:BatchWriteItem
- dynamodb:DeleteItem
- dynamodb:DeleteTable
- dynamodb:DescribeTable
- dynamodb:GetItem
- dynamodb:ListTables
- dynamodb:PutItem
- dynamodb:Scan
Resource: "*"
- Effect: Allow
Action:
- ec2:DeleteNatGateway
- ec2:DeleteSecurityGroup
- ec2:DeleteSnapshot
- ec2:DeleteVolume
- ec2:DeregisterImage
- ec2:DescribeAddresses
- ec2:DescribeImages
- ec2:DescribeInstanceAttribute
- ec2:DescribeInstances
- ec2:DescribeNatGateways
- ec2:DescribeSecurityGroups
- ec2:DescribeSnapshots
- ec2:DescribeVolumes
- ec2:ModifyInstanceAttribute
- ec2:ReleaseAddress
- ec2:StopInstances
- ec2:TerminateInstances
Resource: "*"
- Effect: Allow
Action:
- ecr:BatchDeleteImage
- ecr:DeleteRepository
- ecr:DescribeImages
- ecr:DescribeRepositories
- ecr:ListImages
Resource: "*"
- Effect: Allow
Action:
- ecs:DeleteCluster
- ecs:DeleteService
- ecs:DescribeClusters
- ecs:DescribeServices
- ecs:ListClusters
- ecs:ListServices
Resource: "*"
- Effect: Allow
Action:
- eks:DeleteCluster
- eks:DeleteFargateProfile
- eks:DeleteNodegroup
- eks:DescribeCluster
- eks:DescribeFargateProfile
- eks:DescribeNodegroup
- eks:ListClusters
- eks:ListFargateProfiles
- eks:ListNodegroups
Resource: "*"
- Effect: Allow
Action:
- elasticbeanstalk:DeleteApplication
- elasticbeanstalk:DescribeApplications
Resource: "*"
- Effect: Allow
Action:
- elasticache:DeleteCacheCluster
- elasticache:DeleteReplicationGroup
- elasticache:DescribeCacheClusters
- elasticache:DescribeReplicationGroups
Resource: "*"
- Effect: Allow
Action:
- elasticfilesystem:DeleteFileSystem
- elasticfilesystem:DeleteMountTarget
- elasticfilesystem:DescribeFileSystems
- elasticfilesystem:DescribeMountTargets
Resource: "*"
- Effect: Allow
Action:
- elasticloadbalancing:DeleteLoadBalancer
- elasticloadbalancing:DescribeLoadBalancers
- elasticloadbalancing:ModifyLoadBalancerAttributes
Resource: "*"
- Effect: Allow
Action:
- elasticmapreduce:ListClusters
- elasticmapreduce:TerminateJobFlows
Resource: "*"
- Effect: Allow
Action:
- es:DeleteElasticsearchDomain
- es:DescribeElasticsearchDomainConfig
- es:ListDomainNames
Resource: "*"
- Effect: Allow
Action:
- glue:DeleteCrawler
- glue:DeleteDatabase
- glue:DeleteDevEndPoint
- glue:GetCrawlers
- glue:GetDatabases
- glue:GetDevEndpoints
- glue:GetTable
Resource: "*"
- Effect: Allow
Action:
- iam:DeleteAccessKey
- iam:DeleteInstanceProfile
- iam:DeleteLoginProfile
- iam:DeletePolicy
- iam:DeletePolicyVersion
- iam:DeleteRole
- iam:DeleteRolePolicy
- iam:DeleteUser
- iam:DeleteUserPolicy
- iam:DetachGroupPolicy
- iam:DetachRolePolicy
- iam:DetachUserPolicy
- iam:GenerateServiceLastAccessedDetails
- iam:GetAccessKeyLastUsed
- iam:GetServiceLastAccessedDetails
- iam:ListAccessKeys
- iam:ListAttachedRolePolicies
- iam:ListEntitiesForPolicy
- iam:ListGroupsForUser
- iam:ListInstanceProfilesForRole
- iam:ListPolicies
- iam:ListPolicyVersions
- iam:ListRolePolicies
- iam:ListRoles
- iam:ListUserPolicies
- iam:ListUsers
- iam:RemoveRoleFromInstanceProfile
- iam:RemoveUserFromGroup
Resource: "*"
- Effect: Allow
Action:
- kafka:DeleteCluster
- kafka:ListClustersV2
- ec2:DeleteVpcEndpoints
Resource: "*"
- Effect: Allow
Action:
- kinesis:DeleteStream
- kinesis:DescribeStream
- kinesis:ListStreams
Resource: "*"
- Effect: Allow
Action:
- kms:DescribeKey
- kms:ListKeys
- kms:ScheduleKeyDeletion
Resource: "*"
- Effect: Allow
Action:
- lambda:DeleteFunction
- lambda:ListFunctions
Resource: "*"
- Effect: Allow
Action:
- logs:DeleteLogGroup
- logs:DescribeLogGroups
Resource: "*"
- Effect: Allow
Action:
- redshift:DeleteCluster
- redshift:DeleteClusterSnapshot
- redshift:DescribeClusterSnapshots
- redshift:DescribeClusters
Resource: "*"
- Effect: Allow
Action:
- rds:DeleteDBCluster
- rds:DeleteDBClusterSnapshot
- rds:DeleteDBInstance
- rds:DeleteDBSnapshot
- rds:DescribeDBClusters
- rds:DescribeDBClusterSnapshots
- rds:DescribeDBInstances
- rds:DescribeDBSnapshots
- rds:ModifyDBCluster
- rds:ModifyDBInstance
Resource: "*"
- Effect: Allow
Action:
- s3:Delete*
- s3:Get*
- s3:List*
- s3:Put*
Resource: "*"
- Effect: Allow
Action:
- sagemaker:DeleteApp
- sagemaker:DeleteEndpoint
- sagemaker:DeleteNotebookInstance
- sagemaker:ListApps
- sagemaker:ListEndpoints
- sagemaker:ListNotebookInstances
- sagemaker:StopNotebookInstance
Resource: "*"
- Effect: Allow
Action:
- sts:GetCallerIdentity
Resource: "*"
- Effect: Allow
Action:
- transfer:DeleteServer
- transfer:ListServers
Resource: "*"
tracing:
apiGateway: true
lambda: true
package:
individually: true
patterns:
- "!node_modules/**"
functions:
AutoCleanup:
handler: src/main.lambda_handler
name: ${self:service}-${self:provider.stage}
description: Removes unused AWS resources based on time of creation
memorySize: 512
timeout: 900
maximumRetryAttempts: 0
package:
patterns:
- "!**"
- "src/**"
layers:
- Ref: PythonRequirementsLambdaLayer
environment:
LOG_LEVEL: ${self:custom.log_level}
EXECUTION_LOG_BUCKET:
Ref: ExecutionLogBucket
SETTINGS_TABLE:
Ref: SettingsTable
ALLOWLIST_TABLE:
Ref: AllowlistTable
events:
- schedule:
rate: rate(3 days)
enabled: true
resources:
Resources:
SettingsTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: ${self:service}-${self:provider.stage}-settings
AttributeDefinitions:
- AttributeName: key
AttributeType: S
KeySchema:
- AttributeName: key
KeyType: HASH
BillingMode: PAY_PER_REQUEST
PointInTimeRecoverySpecification:
PointInTimeRecoveryEnabled: true
AllowlistTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: ${self:service}-${self:provider.stage}-allowlist
AttributeDefinitions:
- AttributeName: resource_id
AttributeType: S
KeySchema:
- AttributeName: resource_id
KeyType: HASH
TimeToLiveSpecification:
AttributeName: expiration
Enabled: true
BillingMode: PAY_PER_REQUEST
PointInTimeRecoverySpecification:
PointInTimeRecoveryEnabled: true
ExecutionLogBucket:
Type: AWS::S3::Bucket
DeletionPolicy: Retain
Properties:
BucketName: !Sub ${self:service}-${self:provider.stage}-execution-log-${AWS::AccountId}
AccessControl: Private
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: AES256
AthenaResultsBucket:
Type: AWS::S3::Bucket
DeletionPolicy: Retain
Properties:
BucketName: !Sub ${self:service}-${self:provider.stage}-athena-results-${AWS::AccountId}
AccessControl: Private
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: AES256
LifecycleConfiguration:
Rules:
- Id: DeleteAfter7Days
Status: "Enabled"
ExpirationInDays: 7
AutoCleanupDatabase:
Type: "AWS::Glue::Database"
Properties:
DatabaseInput:
Name: ${self:service}-${self:provider.stage}
CatalogId: !Ref AWS::AccountId
ExecutionLogTable:
Type: AWS::Glue::Table
Properties:
CatalogId: !Ref AWS::AccountId
DatabaseName: !Ref AutoCleanupDatabase
TableInput:
Name: execution_log
StorageDescriptor:
Columns:
- Name: platform
Type: string
- Name: region
Type: string
- Name: service
Type: string
- Name: resource
Type: string
- Name: resource_id
Type: string
- Name: action
Type: string
- Name: timestamp
Type: timestamp
- Name: dry_run_flag
Type: boolean
- Name: execution_id
Type: string
Compressed: False
Location: !Join ["", ["s3://", !Ref ExecutionLogBucket, "/"]]
InputFormat: org.apache.hadoop.mapred.TextInputFormat
OutputFormat: org.apache.hadoop.hive.ql.io.IgnoreKeyTextOutputFormat
SerdeInfo:
SerializationLibrary: org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe
Parameters:
field.delim: ","
Parameters:
delimiter: ","
classification: csv
"skip.header.line.count": 1
has_encrypted_data: true
Outputs:
ExecutionLogBucketName:
Value:
Ref: ExecutionLogBucket
SettingsTableName:
Value:
Ref: SettingsTable
AllowlistTableName:
Value:
Ref: AllowlistTable
plugins:
- serverless-python-requirements