Skip to content

Commit 949ff83

Browse files
committed
split container, dont log ddb errors when cause is clear from message
1 parent 4e758c3 commit 949ff83

39 files changed

+291
-179
lines changed

infrastructure/terraform/modules/backend-api/module_count_routing_configs_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "count_routing_configs_lambda" {
1515
handler_function_name = "handler"
1616
description = "Count Routing Configs API endpoint"
1717

18-
memory = 512
18+
memory = 2048
1919
timeout = 3
2020
runtime = "nodejs20.x"
2121

infrastructure/terraform/modules/backend-api/module_create_routing_config_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "create_routing_config_lambda" {
1515
handler_function_name = "handler"
1616
description = "Create Routing Config API endpoint"
1717

18-
memory = 512
18+
memory = 2048
1919
timeout = 3
2020
runtime = "nodejs20.x"
2121

infrastructure/terraform/modules/backend-api/module_create_template_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "create_template_lambda" {
1515
handler_function_name = "handler"
1616
description = "Create template API endpoint"
1717

18-
memory = 512
18+
memory = 2048
1919
timeout = 20
2020
runtime = "nodejs20.x"
2121

infrastructure/terraform/modules/backend-api/module_delete_routing_config_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "delete_routing_config_lambda" {
1515
handler_function_name = "handler"
1616
description = "Delete Routing Config API endpoint"
1717

18-
memory = 512
18+
memory = 2048
1919
timeout = 3
2020
runtime = "nodejs20.x"
2121

infrastructure/terraform/modules/backend-api/module_delete_template_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "delete_template_lambda" {
1515
handler_function_name = "handler"
1616
description = "Delete a template"
1717

18-
memory = 512
18+
memory = 2048
1919
timeout = 20
2020
runtime = "nodejs20.x"
2121

infrastructure/terraform/modules/backend-api/module_get_client_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "get_client_lambda" {
1515
handler_function_name = "handler"
1616
description = "Get client configuration API endpoint"
1717

18-
memory = 512
18+
memory = 2048
1919
timeout = 20
2020
runtime = "nodejs20.x"
2121

infrastructure/terraform/modules/backend-api/module_get_routing_config_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "get_routing_config_lambda" {
1515
handler_function_name = "handler"
1616
description = "Get Routing Config API endpoint"
1717

18-
memory = 512
18+
memory = 2048
1919
timeout = 3
2020
runtime = "nodejs20.x"
2121

infrastructure/terraform/modules/backend-api/module_get_template_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "get_template_lambda" {
1515
handler_function_name = "handler"
1616
description = "Get template API endpoint"
1717

18-
memory = 512
18+
memory = 2048
1919
timeout = 20
2020
runtime = "nodejs20.x"
2121

infrastructure/terraform/modules/backend-api/module_lambda_request_proof.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module "request_proof_lambda" {
1515
handler_function_name = "handler"
1616
description = "Request a proof"
1717

18-
memory = 512
18+
memory = 2048
1919
timeout = 20
2020
runtime = "nodejs20.x"
2121

infrastructure/terraform/modules/backend-api/module_submit_routing_config_lambda.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module "submit_routing_config_lambda" {
22
source = "https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/v2.0.22/terraform-lambda.zip"
33

44
system_log_level = "DEBUG"
5-
application_log_level = "FATAL"
5+
application_log_level = "INFO"
66

77
project = var.project
88
environment = var.environment
@@ -18,7 +18,7 @@ module "submit_routing_config_lambda" {
1818
handler_function_name = "handler"
1919
description = "Submit Routing Config API endpoint"
2020

21-
memory = 512
21+
memory = 2048
2222
timeout = 3
2323
runtime = "nodejs20.x"
2424

0 commit comments

Comments
 (0)