Skip to content
Closed
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion infrastructure/instance/ack_lambda.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ module "ack_processor_docker_image" {
})

platform = "linux/amd64"
use_image_tag = false
use_image_tag = true
keep_remotely = true
source_path = abspath("${path.root}/../../lambdas")
triggers = {
dir_sha = local.ack_lambda_dir_sha
Expand Down
1 change: 1 addition & 0 deletions lambdas/ack_backend/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test
2 changes: 2 additions & 0 deletions lambdas/batch_processor_filter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ basis from an SQS FIFO queue. At a high-level, the pseudocode is as follows:
- check the Audit Table if there is already an event processing for the given supplier + vacc type
- if there is not, then update the event's status in the Audit Table and forward to SQS for processing by ECS
- if there is, then throw an error so that the event is returned to the queue and will be tried again later

test