Skip to content
Merged
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
1 change: 1 addition & 0 deletions open-tofu/main.tf.template
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ resource "aws_lambda_function" "mpic_coordinator_lambda" {
source_code_hash = filebase64sha256("../{{source-path}}/mpic_coordinator_lambda/mpic_coordinator_lambda.zip")
runtime = "python3.11"
architectures = ["arm64"]
memory_size = var.coordinator_memory_size
timeout = 60
layers = [
aws_lambda_layer_version.python3_open_mpic_layer.arn,
Expand Down
7 changes: 7 additions & 0 deletions open-tofu/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@ variable "dnssec_enabled" {
description = "Enable DNSSEC"
default = true
}

variable "coordinator_memory_size" {
type = number
description = "MPIC Coordinator Lambda Function Memory"
default = 512

}