-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlambda.tf
45 lines (37 loc) · 1.12 KB
/
lambda.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
data "template_file" "lambda" {
template = "${file("./lambda.py")}"
vars = {
aws_instance = aws_instance.satisfactory_server.id
aws_region = var.aws_region
}
}
data "archive_file" "lambda" {
type = "zip"
source {
content = data.template_file.lambda.rendered
filename = "lambda.py"
}
output_path = "${path.module}/satisfactory.zip"
}
resource "aws_lambda_function" "start_satisfactory" {
# If the file is not in the current working directory you will need to include a
# path.module in the filename.
filename = "satisfactory.zip"
function_name = "StartSatisfactory"
role = aws_iam_role.satisfactory_lambda.arn
handler = "lambda.lambda_handler"
source_code_hash = base64sha256(data.template_file.lambda.rendered)
runtime = "python3.10"
environment {
variables = {
DISCORD_WEBHOOK = var.discord_webhook_url
}
}
}
resource "aws_lambda_function_url" "call_lambda" {
function_name = aws_lambda_function.start_satisfactory.function_name
authorization_type = "AWS_IAM"
}
output "lambda" {
value = aws_lambda_function_url.call_lambda.function_url
}