Skip to content

Commit

Permalink
Try to workaround path issue terraform-aws-modules#2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Solórzano-Hamilton committed Jan 1, 2019
1 parent 6e518b4 commit 237d4fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ data "null_data_source" "lambda_file" {

data "null_data_source" "lambda_archive" {
inputs {
filename = "${substr("${path.module}/functions/notify_slack.zip", length(path.cwd) + 1, -1)}"
filename = "notify_slack.zip" # Try to work around hard-coded module path failure
}
}

Expand Down

0 comments on commit 237d4fe

Please sign in to comment.