-
Notifications
You must be signed in to change notification settings - Fork 13
/
elb_lookup.tf
76 lines (65 loc) · 1.85 KB
/
elb_lookup.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
/*
This lambda is used to dynamically
find the name of the ELB, since an
appropriate terraform data source
does not exist (look up ELB by vpc / tags)
*/
resource "random_id" "collision_avoidance" {
byte_length = 5
}
# This data source will be used in other files
resource "aws_iam_role_policy" "elb_lookup_policy" {
name = "${var.deployment_id}_elb_lookup_policy${random_id.collision_avoidance.hex}"
role = aws_iam_role.elb_lookup_role.id
policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [{
"Action": ["elasticloadbalancing:DescribeLoadBalancers",
"elasticloadbalancing:DescribeTags"],
"Effect": "Allow",
"Resource": "*"
}]
}
EOF
}
resource "aws_iam_role" "elb_lookup_role" {
name = "${var.deployment_id}_elb_lookup_role${random_id.collision_avoidance.hex}"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "lambda.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
tags = local.tags
}
data "archive_file" "elb_lookup" {
type = "zip"
source_file = "${path.module}/files/elb_lookup.py"
output_path = "${path.module}/elb_lookup.py.zip"
}
resource "aws_lambda_function" "elb_lookup" {
depends_on = [data.archive_file.elb_lookup, aws_iam_role_policy.elb_lookup_policy]
filename = "${path.module}/elb_lookup.py.zip"
function_name = "${var.deployment_id}_elb_lookup_function${random_id.collision_avoidance.hex}"
role = aws_iam_role.elb_lookup_role.arn
handler = "elb_lookup.my_handler"
source_code_hash = data.archive_file.elb_lookup.output_base64sha256
runtime = "python3.7"
environment {
variables = {
VPC_ID = local.vpc_id
CLUSTER_NAME = local.cluster_name
}
}
tags = local.tags
}