We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 869e4af commit 50e8c2bCopy full SHA for 50e8c2b
infrastructure/lambda-pdf-stitching.tf
@@ -0,0 +1,16 @@
1
+module "pdf-stitching-lambda" {
2
+ source = "./modules/lambda"
3
+ name = "pdf-stitching-lambda"
4
+ handler = "handlers.pdf-stitching-lambda.lambda_handler"
5
+ lambda_timeout = 900
6
+ iam_role_policy_documents = [
7
+ module.ndr-lloyd-george-store.s3_write_policy_document,
8
+ module.ndr-lloyd-george-store.s3_read_policy_document,
9
+ module.sqs-nrl-queue.sqs_write_policy_document,
10
+ module.sqs-stitching-queue-deadletter.sqs_write_policy_document,
11
+ module.sqs-stitching-queue.sqs_read_policy_document
12
+ ]
13
+ rest_api_id = null
14
+ api_execution_arn = null
15
+ is_invoked_from_gateway = false
16
+}
0 commit comments