-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlambda.tf
executable file
·47 lines (38 loc) · 1.53 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
46
data "archive_file" "zipped_code" {
type = "zip"
source_file = "${path.module}/lambda_function.py"
output_path = "${path.module}/lambda_function.zip"
}
resource "aws_lambda_function" "bucket_listing" {
description = "to list contents of S3 bucket like filesystem ls"
environment {
variables = {
BUCKET_NAME = var.bucket_name
}
}
function_name = "s3-bucket-listing"
handler = "lambda_function.lambda_handler"
logging_config {
log_format = "Text"
log_group = "/aws/lambda/s3-bucket-listing"
}
role = aws_iam_role.lambda_role.arn
runtime = "python3.10"
filename = data.archive_file.zipped_code.output_path
source_code_hash = data.archive_file.zipped_code.output_base64sha256
tracing_config {
mode = "PassThrough"
}
}
resource "aws_lambda_permission" "toplevel" {
action = "lambda:InvokeFunction"
function_name = aws_lambda_function.bucket_listing.function_name
principal = "apigateway.amazonaws.com"
source_arn = "${aws_api_gateway_rest_api.gateway_to_lambda.execution_arn}/*/${aws_api_gateway_method.toplevel.http_method}${aws_api_gateway_resource.toplevel.path}"
}
resource "aws_lambda_permission" "folder" {
action = "lambda:InvokeFunction"
function_name = aws_lambda_function.bucket_listing.function_name
principal = "apigateway.amazonaws.com"
source_arn = "${aws_api_gateway_rest_api.gateway_to_lambda.execution_arn}/*/${aws_api_gateway_method.folder.http_method}${aws_api_gateway_resource.folder.path}"
}