Skip to content
This repository has been archived by the owner on Jun 8, 2022. It is now read-only.

feature: add built filename to outputs #55

Open
wants to merge 4 commits into
base: v0.x.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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")}"
}