This repository has been archived by the owner on Feb 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
aws-lambda-backup.tf
88 lines (80 loc) · 2.3 KB
/
aws-lambda-backup.tf
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
data "archive_file" "ebs-backup-py" {
type = "zip"
source_file = "${path.module}/ebs-backup.py"
output_path = "${path.module}/ebs-backup.zip"
}
resource "aws_iam_role" "lambda_ebs_backup" {
name = "lambda_ebs_backup"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "lambda.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
}
resource "aws_iam_role_policy" "lambda_ebs_backup_policy" {
name = "lambda_ebs_backup_policy"
role = "${aws_iam_role.lambda_ebs_backup.id}"
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents"
],
"Resource": "arn:aws:logs:*:*:*"
},
{
"Effect": "Allow",
"Action": [
"ec2:CreateSnapshot",
"ec2:CreateTags",
"ec2:DeleteSnapshot",
"ec2:DescribeInstances",
"ec2:DescribeSnapshots"
],
"Resource": "*"
}
]
}
EOF
}
resource "aws_lambda_function" "lambda_ebs_backup" {
filename = "${path.module}/ebs-backup.zip"
function_name = "ebs-backup"
role = "${aws_iam_role.lambda_ebs_backup.arn}"
handler = "ebs-backup.lambda_handler"
source_code_hash = "${data.archive_file.ebs-backup-py.output_base64sha256}"
runtime = "python3.6"
timeout = 60
}
resource "aws_cloudwatch_event_rule" "lambda_ebs_backup" {
name = "lambda_ebs_backup"
description = "Run backups once a day"
schedule_expression = "rate(1 day)"
}
resource "aws_cloudwatch_event_target" "lambda_ebs_backup" {
rule = "${aws_cloudwatch_event_rule.lambda_ebs_backup.name}"
target_id = "ebs-backup"
arn = "${aws_lambda_function.lambda_ebs_backup.arn}"
}
resource "aws_lambda_permission" "lambda_ebs_backup" {
statement_id = "AllowExecutionFromCloudWatch"
action = "lambda:InvokeFunction"
function_name = "${aws_lambda_function.lambda_ebs_backup.function_name}"
principal = "events.amazonaws.com"
source_arn = "${aws_cloudwatch_event_rule.lambda_ebs_backup.arn}"
}