Skip to content

Commit

Permalink
Attempting to avoid the redeploy of lambda each time, per suggestion in
Browse files Browse the repository at this point in the history
  • Loading branch information
irvintim committed Jul 23, 2020
1 parent 55f1c3c commit f9e8107
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg_source.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ data "null_data_source" "wait_for_install_python_dependencies" {
data "archive_file" "lambda_zip" {
depends_on = [null_resource.install_python_dependencies]
type = "zip"
source_dir = data.null_data_source.wait_for_install_python_dependencies.outputs
source_dir = data.null_data_source.wait_for_install_python_dependencies.outputs["source_dir"]
output_path = var.lambda_output_path
}

0 comments on commit f9e8107

Please sign in to comment.