File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments