File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
modules/scenarios/message-size-breach Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,11 @@ resource "aws_lambda_function" "image_processor" {
52
52
# This will fail when batch size × message size > 256KB (Lambda async limit)
53
53
memory_size = 1024
54
54
55
+ depends_on = [
56
+ data . archive_file . lambda_zip ,
57
+ aws_iam_role . lambda_role
58
+ ]
59
+
55
60
56
61
tags = {
57
62
Name = " Image Processor"
Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ terraform {
15
15
# we expect this to be fixed over the coming weeks, as of 23/6/2025
16
16
version = " < 6.0"
17
17
}
18
+ archive = {
19
+ source = " hashicorp/archive"
20
+ version = " ~> 2.0"
21
+ }
18
22
}
19
23
backend "s3" {
20
24
# note that this configuration is only used on the github actions demo
You can’t perform that action at this time.
0 commit comments