Skip to content

Commit d3c1332

Browse files
authored
[PRMT-69] Increase lambda memory for the Metadata pre-processor (#305)
1 parent 278d342 commit d3c1332

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

infrastructure/lambda-bulk-upload-metadata-preprocessor.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,6 @@ module "bulk_upload_metadata_preprocessor_lambda" {
2222
is_gateway_integration_needed = false
2323
is_invoked_from_gateway = false
2424
lambda_timeout = 900
25+
memory_size = 1769
2526
reserved_concurrent_executions = local.bulk_upload_lambda_concurrent_limit
2627
}

infrastructure/modules/app_config/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ No requirements.
77
| Name | Version |
88
|------|---------|
99
| <a name="provider_aws"></a> [aws](#provider\_aws) | n/a |
10+
| <a name="provider_terraform"></a> [terraform](#provider\_terraform) | n/a |
1011

1112
## Modules
1213

@@ -23,6 +24,7 @@ No modules.
2324
| [aws_appconfig_environment.ndr-app-config-environment](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/appconfig_environment) | resource |
2425
| [aws_appconfig_hosted_configuration_version.ndr-app-config-profile-version](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/appconfig_hosted_configuration_version) | resource |
2526
| [aws_iam_policy.app_config_policy](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_policy) | resource |
27+
| [terraform_data.current_config_file_content](https://registry.terraform.io/providers/hashicorp/terraform/latest/docs/resources/data) | resource |
2628
| [aws_iam_policy_document.app_config_policy](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/iam_policy_document) | data source |
2729

2830
## Inputs

infrastructure/modules/app_config/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ resource "aws_appconfig_hosted_configuration_version" "ndr-app-config-profile-ve
6363
# AWS is adding a created and modified timestamp to the content, which causes a change in the resource.
6464
# This is a workaround until the issue is resolved in the AWS provider.
6565
# https://github.com/hashicorp/terraform-provider-aws/issues/20273
66-
ignore_changes = [content]
66+
ignore_changes = [content]
6767

68-
replace_triggered_by = [
68+
replace_triggered_by = [
6969
aws_appconfig_application.ndr-app-config-application.id,
7070
aws_appconfig_configuration_profile.ndr-app-config-profile.configuration_profile_id,
7171
terraform_data.current_config_file_content,
72-
]
72+
]
7373
}
7474
}
7575

0 commit comments

Comments
 (0)