-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaws-ec2-turnonoff.tf
123 lines (112 loc) · 3.01 KB
/
aws-ec2-turnonoff.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
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
data "archive_file" "ec2-turnonoff-py" {
type = "zip"
source_file = "${path.module}/lambda_function.py"
output_path = "${path.module}/ec2-turnonoff.zip"
}
resource "aws_iam_role" "lambda_ec2_turnonoff" {
name = "lambda_ec2_turnonoff"
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_ec2_turnonoff_policy" {
name = "lambda_ec2_turnonoff_policy"
role = "${aws_iam_role.lambda_ec2_turnonoff.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:DescribeRegions",
"ec2:DescribeInstances"
],
"Resource":"*"
},
{
"Sid":"VisualEditor0",
"Effect":"Allow",
"Action":[
"ec2:StartInstances"
],
"Resource":"*",
"Condition":{
"StringLike":{
"ec2:ResourceTag/TurnOn":"*"
}
}
},
{
"Sid":"VisualEditor1",
"Effect":"Allow",
"Action":[
"ec2:StopInstances"
],
"Resource":"*",
"Condition":{
"StringLike":{
"ec2:ResourceTag/TurnOff":"*"
}
}
}
]
}
EOF
}
variable "workweek" {
type = "string"
description = "Work week start day (Example: Sunday or Monday)."
}
resource "aws_lambda_function" "lambda_ec2_turnonoff" {
filename = "${path.module}/ec2-turnonoff.zip"
function_name = "EC2_TurnOnOff"
role = "${aws_iam_role.lambda_ec2_turnonoff.arn}"
handler = "lambda_function.lambda_handler"
source_code_hash = "${data.archive_file.ec2-turnonoff-py.output_base64sha256}"
runtime = "python3.7"
timeout = 900
environment {
variables = {
workweek_tag = "${var.workweek}"
}
}
}
resource "aws_cloudwatch_event_rule" "lambda_ec2_turnonoff" {
name = "lambda_ec2_turnonoff"
description = "Invoke lambda every half an hour"
schedule_expression = "cron(0/30 * * * ? *)"
}
resource "aws_cloudwatch_event_target" "lambda_ec2_turnonoff" {
rule = "${aws_cloudwatch_event_rule.lambda_ec2_turnonoff.name}"
target_id = "ec2-turnonoff"
arn = "${aws_lambda_function.lambda_ec2_turnonoff.arn}"
}
resource "aws_lambda_permission" "lambda_ec2_turnonoff" {
statement_id = "AllowExecutionFromCloudWatch"
action = "lambda:InvokeFunction"
function_name = "${aws_lambda_function.lambda_ec2_turnonoff.function_name}"
principal = "events.amazonaws.com"
source_arn = "${aws_cloudwatch_event_rule.lambda_ec2_turnonoff.arn}"
}