We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1970df commit 3cc6fc0Copy full SHA for 3cc6fc0
modules/scenarios/message-size-breach/data_sources.tf
@@ -1,4 +1,4 @@
1
-# Data source for Lambda function zip file (inline code)
+# Create Lambda function zip file using archive_file data source
2
data "archive_file" "lambda_zip" {
3
type = "zip"
4
output_path = "${path.module}/lambda_function.zip"
modules/scenarios/message-size-breach/main.tf
@@ -53,7 +53,6 @@ resource "aws_lambda_function" "image_processor" {
53
memory_size = 1024
54
55
depends_on = [
56
- data.archive_file.lambda_zip,
57
aws_iam_role.lambda_role
58
]
59
0 commit comments