Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Unreleased
* Add validation of deploy_name in env.sh
* Expose `report_sns_topic_subscriber_arns` variable to cumulus.tf module

## v22.2.1.0
* Upgrade to [Cumulus v22.2.1](https://github.com/nasa/cumulus/releases/tag/v22.2.1)
Expand Down
1 change: 1 addition & 0 deletions cumulus/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ module "cumulus" {
}], var.throttled_queues, local.throttled_queues)

archive_records_config = var.archive_records_config
report_sns_topic_subscriber_arns = var.report_sns_topic_subscriber_arns
}

resource "aws_security_group" "no_ingress_all_egress" {
Expand Down
8 changes: 7 additions & 1 deletion cumulus/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -555,4 +555,10 @@ variable "tea_distribution_url_per_cmr_provider" {
description = "Map of CMR provider short_name to TEA external endpoint URL. Used in consolidated deployments to route distribution URLs per Collection.cmrProvider. Falls back to tea_distribution_url for any provider not listed."
type = map(string)
default = {}
}
}

variable "report_sns_topic_subscriber_arns" {
type = list(any)
default = null
description = "Account ARNs to supply to report SNS topics policy with subscribe action"
}
Loading