We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a313d0 + 105936a commit 8fb72c0Copy full SHA for 8fb72c0
2 files changed
open-tofu/main.tf.template
@@ -73,6 +73,7 @@ resource "aws_lambda_function" "mpic_coordinator_lambda" {
73
source_code_hash = filebase64sha256("../{{source-path}}/mpic_coordinator_lambda/mpic_coordinator_lambda.zip")
74
runtime = "python3.11"
75
architectures = ["arm64"]
76
+ memory_size = var.coordinator_memory_size
77
timeout = 60
78
layers = [
79
aws_lambda_layer_version.python3_open_mpic_layer.arn,
open-tofu/variables.tf
@@ -3,3 +3,10 @@ variable "dnssec_enabled" {
3
description = "Enable DNSSEC"
4
default = true
5
}
6
+
7
+variable "coordinator_memory_size" {
8
+ type = number
9
+ description = "MPIC Coordinator Lambda Function Memory"
10
+ default = 512
11
12
+}
0 commit comments