File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed
Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change 88
99| Name | Version |
1010| ------| ---------|
11- | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 5.62.0 |
11+ | <a name =" provider_aws " ></a > [ aws] ( #provider\_ aws ) | 5.86.1 |
1212
1313## Modules
1414
3838| <a name =" module_bulk-upload-report-alarm " ></a > [ bulk-upload-report-alarm] ( #module\_ bulk-upload-report-alarm ) | ./modules/lambda_alarms | n/a |
3939| <a name =" module_bulk-upload-report-alarm-topic " ></a > [ bulk-upload-report-alarm-topic] ( #module\_ bulk-upload-report-alarm-topic ) | ./modules/sns | n/a |
4040| <a name =" module_bulk-upload-report-lambda " ></a > [ bulk-upload-report-lambda] ( #module\_ bulk-upload-report-lambda ) | ./modules/lambda | n/a |
41+ | <a name =" module_bulk_upload_metadata_preprocessor_lambda " ></a > [ bulk\_ upload\_ metadata\_ preprocessor\_ lambda] ( #module\_ bulk\_ upload\_ metadata\_ preprocessor\_ lambda ) | ./modules/lambda | n/a |
4142| <a name =" module_bulk_upload_report_dynamodb_table " ></a > [ bulk\_ upload\_ report\_ dynamodb\_ table] ( #module\_ bulk\_ upload\_ report\_ dynamodb\_ table ) | ./modules/dynamo_db | n/a |
4243| <a name =" module_cloudfront-distribution-lg " ></a > [ cloudfront-distribution-lg] ( #module\_ cloudfront-distribution-lg ) | ./modules/cloudfront | n/a |
4344| <a name =" module_cloudfront_edge_dynamodb_table " ></a > [ cloudfront\_ edge\_ dynamodb\_ table] ( #module\_ cloudfront\_ edge\_ dynamodb\_ table ) | ./modules/dynamo_db | n/a |
268269| [ aws_iam_role_policy_attachment.data_collection_document_reference_dynamodb_table] ( https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment ) | resource |
269270| [ aws_iam_role_policy_attachment.data_collection_document_store] ( https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment ) | resource |
270271| [ aws_iam_role_policy_attachment.data_collection_ecs_execution] ( https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment ) | resource |
272+ | [ aws_iam_role_policy_attachment.data_collection_lloyd_george_reference_dynamodb_table] ( https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment ) | resource |
271273| [ aws_iam_role_policy_attachment.data_collection_lloyd_george_store] ( https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment ) | resource |
272274| [ aws_iam_role_policy_attachment.data_collection_ssm_access_policy] ( https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment ) | resource |
273275| [ aws_iam_role_policy_attachment.data_collection_statistical_reports_store] ( https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role_policy_attachment ) | resource |
Original file line number Diff line number Diff line change 1+ module "bulk_upload_metadata_preprocessor_lambda" {
2+ source = " ./modules/lambda"
3+ name = " BulkUploadMetadataPreprocessor"
4+ handler = " handlers.bulk_upload_metadata_preprocessor_handler.lambda_handler"
5+
6+ iam_role_policy_documents = [
7+ module . ndr-bulk-staging-store . s3_read_policy_document ,
8+ module . ndr-bulk-staging-store . s3_write_policy_document ,
9+ module . ndr-app-config . app_config_policy
10+ ]
11+ rest_api_id = null
12+ api_execution_arn = null
13+
14+ lambda_environment_variables = {
15+ APPCONFIG_APPLICATION = module.ndr- app- config.app_config_application_id
16+ APPCONFIG_ENVIRONMENT = module.ndr- app- config.app_config_environment_id
17+ APPCONFIG_CONFIGURATION = module.ndr- app- config.app_config_configuration_profile_id
18+ WORKSPACE = terraform.workspace
19+ STAGING_STORE_BUCKET_NAME = " ${ terraform . workspace } -${ var . staging_store_bucket_name } "
20+ }
21+
22+ is_gateway_integration_needed = false
23+ is_invoked_from_gateway = false
24+ lambda_timeout = 900
25+ reserved_concurrent_executions = local. bulk_upload_lambda_concurrent_limit
26+ }
You can’t perform that action at this time.
0 commit comments