forked from CodelyTV/terraform-course
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlambda.tf
More file actions
executable file
·31 lines (27 loc) · 714 Bytes
/
lambda.tf
File metadata and controls
executable file
·31 lines (27 loc) · 714 Bytes
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
resource "aws_lambda_function" "catalog-writer" {
# If the file is not in the current working directory you will need to include a
# path.module in the filename.
filename = "catalog-writer.zip"
function_name = "catalog-writer"
role = aws_iam_role.iam_for_lambda.arn
handler = "code.lambda_handler"
source_code_hash = filebase64sha256("catalog-writer.zip")
runtime = "python3.9"
}
resource "aws_iam_role" "iam_for_lambda" {
name = "lambda-role"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "lambda.amazonaws.com"
},
"Effect": "Allow"
}
]
}
EOF
}