forked from futurice/terraform-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
54 lines (46 loc) · 2.39 KB
/
main.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
# This aws_lambda_function is used when invoked with a local zipfile
resource "aws_lambda_function" "local_zipfile" {
count = "${var.function_s3_bucket == "" ? 1 : 0}"
# These are SPECIFIC to the deployment method:
filename = "${var.function_zipfile}"
source_code_hash = "${var.function_s3_bucket == "" ? "${base64sha256(file("${var.function_zipfile}"))}" : ""}"
# These are the SAME for both:
description = "${var.comment_prefix}${var.cronjob_name}"
function_name = "${local.prefix_with_name}"
handler = "${var.function_handler}"
runtime = "${var.function_runtime}"
timeout = "${var.function_timeout}"
memory_size = "${var.memory_size}"
role = "${aws_iam_role.this.arn}"
tags = "${var.tags}"
environment {
variables = "${var.function_env_vars}"
}
}
# This aws_lambda_function is used when invoked with a zipfile in S3
resource "aws_lambda_function" "s3_zipfile" {
count = "${var.function_s3_bucket == "" ? 0 : 1}"
# These are SPECIFIC to the deployment method:
s3_bucket = "${var.function_s3_bucket}"
s3_key = "${var.function_zipfile}"
# These are the SAME for both:
description = "${var.comment_prefix}${var.cronjob_name}"
function_name = "${local.prefix_with_name}"
handler = "${var.function_handler}"
runtime = "${var.function_runtime}"
timeout = "${var.function_timeout}"
memory_size = "${var.memory_size}"
role = "${aws_iam_role.this.arn}"
tags = "${var.tags}"
environment {
variables = "${var.function_env_vars}"
}
}
# Terraform isn't particularly helpful when you want to depend on the existence of a resource which may have count 0 or 1, like our functions.
# This is a hacky way of referring to the properties of the function, regardless of which one got created.
# https://github.com/hashicorp/terraform/issues/16580#issuecomment-342573652
locals {
function_id = "${element(concat(aws_lambda_function.local_zipfile.*.id, list("")), 0)}${element(concat(aws_lambda_function.s3_zipfile.*.id, list("")), 0)}"
function_arn = "${element(concat(aws_lambda_function.local_zipfile.*.arn, list("")), 0)}${element(concat(aws_lambda_function.s3_zipfile.*.arn, list("")), 0)}"
function_invoke_arn = "${element(concat(aws_lambda_function.local_zipfile.*.invoke_arn, list("")), 0)}${element(concat(aws_lambda_function.s3_zipfile.*.invoke_arn, list("")), 0)}"
}