diff --git a/outputs.tf b/outputs.tf index a1ccf1d..10e890c 100644 --- a/outputs.tf +++ b/outputs.tf @@ -27,3 +27,8 @@ output "role_name" { description = "The name of the IAM role created for the Lambda function" value = "${aws_iam_role.lambda.name}" } + +output "build_result_filename" { + description = "Full path to the source code package with requirements installed" + value = "${lookup(data.external.built.result, "filename")}" +}