Skip to content

Instantly share code, notes, and snippets.

@SlootSantos
Last active June 30, 2020 13:56
Show Gist options
  • Select an option

  • Save SlootSantos/6b19fb28685a08666ab3e86346e24800 to your computer and use it in GitHub Desktop.

Select an option

Save SlootSantos/6b19fb28685a08666ab3e86346e24800 to your computer and use it in GitHub Desktop.
resource "aws_iam_role" "iam_for_lambda" {
name = "iam_for_lambda"
assume_role_policy = <<EOF
{
"Version": "2012-10-17",
"Statement": [
{
"Action": "sts:AssumeRole",
"Principal": {
"Service": "lambda.amazonaws.com"
},
"Effect": "Allow",
"Sid": ""
}
]
}
EOF
}
resource "aws_lambda_function" "test_lambda" {
filename = "lambda_function_payload.zip"
function_name = "lambda_function_name"
role = "${aws_iam_role.iam_for_lambda.arn}"
handler = "exports.test"
# The filebase64sha256() function is available in Terraform 0.11.12 and later
# For Terraform 0.11.11 and earlier, use the base64sha256() function and the file() function:
# source_code_hash = "${base64sha256(file("lambda_function_payload.zip"))}"
source_code_hash = "${filebase64sha256("lambda_function_payload.zip")}"
runtime = "nodejs12.x"
environment {
variables = {
foo = "bar"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment