Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jan 26, 2022
1 parent 5ceb2ae commit 4ebe2e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource "aws_lambda_function" "lambda" {
handler = local._defaults["lambda_handler"]
memory_size = 128
reserved_concurrent_executions = -1
role = var.crate ? aws_iam_role.role[0].arn : null
role = var.create ? aws_iam_role.role[0].arn : null
runtime = "python3.9"
source_code_hash = filebase64sha256(local.lambda_file)
filename = local.lambda_file
Expand Down

0 comments on commit 4ebe2e7

Please sign in to comment.