Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
e3e4b1c
add new env variable update_granule_identifiers to pass to updateCMRM…
acyu-jpl Feb 3, 2026
bd70a24
* add default_update_granule_identifiers env var to cumulus-tf and tf…
acyu-jpl Feb 12, 2026
7c374dd
add file missing from last commit
acyu-jpl Feb 12, 2026
e63400c
Merge branch 'master' into acyu/CSD-91
acyu-jpl Feb 12, 2026
0ca0245
remove test only and change to serial testing
acyu-jpl Feb 12, 2026
353ca98
* add csd-91 changelog entry.
acyu-jpl Feb 12, 2026
2624d49
restore updateGranuleIdentifiers default value for updateUMMGMetadata
acyu-jpl Feb 12, 2026
51795d0
restore updateGranuleIdentifiers default value to updateCMRMetadata
acyu-jpl Feb 12, 2026
6db1f58
Merge branch 'master' into acyu/CSD-91
acyu-jpl Feb 13, 2026
7116f4c
Move update_granule_identifiers passing test from test-cmr-utils to u…
acyu-jpl Feb 13, 2026
0a73f3c
resolve merge conflict, accepting both changes
acyu-jpl Feb 13, 2026
a7adf25
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 13, 2026
50320e7
CUMULUS-4395 CnmResponse terraform (#4239)
reweeden Feb 16, 2026
e51ef27
CUMULUS-4556 -- Update AJV/minification/CI fixes (#4266)
Jkovarik Feb 20, 2026
be0f676
CUMULUS-4517:Create s3search Module for DuckDB with S3-Backed Tables …
jennyhliu Feb 21, 2026
b000252
Release 21.3.1 merge to master (#4260)
tclark-innovim Feb 23, 2026
e92496e
mikedorfman/CUMULUS-4542 (#4258)
mikedorfman Feb 23, 2026
320b3fa
CUMULUS-4352: implemented multipart downloads in AddMissingFileChecks…
brandonlokey Feb 24, 2026
3afff4f
Update CHANGELOG.md to add migration notes for CnmResponse task (#4267)
reweeden Feb 24, 2026
41d91c7
Merge branch 'master' into acyu/CSD-91
acyu Feb 24, 2026
0a888f3
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Feb 24, 2026
9da0afc
add update_granule_identifiers to tfvars example
acyu-jpl Feb 24, 2026
b9b4494
Merge branch 'master' into acyu/CSD-91
acyu Feb 24, 2026
117568d
Merge branch 'master' into acyu/CSD-91
Nnaga1 Feb 26, 2026
71cf37c
Merge branch 'master' into acyu/CSD-91
Nnaga1 Feb 26, 2026
54d4df7
remove global terraform variable, and move update granule identifier …
acyu-jpl Feb 27, 2026
5ea4c90
add updateGranuleIdentifiers to config correctly. update test from u…
acyu-jpl Feb 27, 2026
ae980cb
CUMULUS-4087 Support Automatic Extension of Cumulus Dashboard User Se…
wisdomaj Feb 26, 2026
7390d87
cbanh/CUMULUS-4107 (#4254)
cqbanh Feb 27, 2026
c832abb
Merge branch 'master' into acyu/CSD-91
Nnaga1 Feb 27, 2026
ee03381
Merge branch 'master' into acyu/CSD-91
Nnaga1 Feb 27, 2026
81fd19e
Update echo10 update-granules-cmr-metadata-file-links data file's gra…
acyu-jpl Mar 3, 2026
d5b039d
Update text based on Naga's feedback
acyu-jpl Mar 4, 2026
7a69485
Update variable description based on Naga's review feedback
acyu-jpl Mar 4, 2026
1c05a5c
Merge branch 'master' into acyu/CSD-91
acyu-jpl Mar 4, 2026
38991fc
refactor test code for readability
acyu-jpl Mar 5, 2026
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
2 changes: 1 addition & 1 deletion tasks/update-granules-cmr-metadata-file-links/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ async function updateEachCmrFileMetadata(
bucketTypes,
cmrGranuleUrlType,
distributionBucketMap,
updateGranuleIdentifiers: true,
updateGranuleIdentifiers: process.env.update_granule_identifiers,
});
}));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ resource "aws_lambda_function" "update_granules_cmr_metadata_file_links_task" {
stackName = var.prefix
CUMULUS_MESSAGE_ADAPTER_DIR = "/opt/"
system_bucket = var.system_bucket
update_granule_identifiers = var.default_update_granule_identifiers
}
}

Expand Down
6 changes: 6 additions & 0 deletions tf-modules/ingest/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,12 @@ variable "default_log_retention_days" {
description = "Optional default value that user chooses for their log retention periods"
}

variable "default_update_granule_identifiers" {
description = "Whether or not to automatically update granule identifiers"
type = bool
default = true
}

variable "sync_granule_s3_jitter_max_ms" {
description = "Maximum random jitter in milliseconds to apply before S3 operations in SyncGranule task (0-59000). Set to 0 to disable jitter."
type = number
Expand Down