Skip to content

Commit

Permalink
Merge pull request #211 from asfadmin/cjl/feat/add-outputs
Browse files Browse the repository at this point in the history
add outputs for rds_lambda
  • Loading branch information
lindsleycj authored Nov 19, 2024
2 parents 4bf88cd + d80aa63 commit 30cd24f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# CHANGELOG

## Unreleased
* add cumulus outputs to allow deployment of the [rds_lambda](https://github.com/ghrcdaac/ghrc_rds_lambda)
which is used as a plugin for [PyLOT](https://github.com/ghrcdaac/cloud-operations-tool-py)

## v18.5.1.0
* Upgrade to [Cumulus v18.5.1](https://github.com/nasa/cumulus/releases/tag/v18.5.1)
Expand Down
7 changes: 7 additions & 0 deletions cumulus/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ output "pdr_status_check_task" {
value = module.cumulus.pdr_status_check_task
}

output "provider_kms_key_id" {
value = module.cumulus.provider_kms_key_id
}

output "queue_granules_task" {
value = module.cumulus.queue_granules_task
}
Expand Down Expand Up @@ -79,6 +83,9 @@ output "sqs2sfThrottle_lambda_function_arn" {

# ---------
# Cumulus IAM Resources
output "lambda_processing_role_name" {
value = module.cumulus.lambda_processing_role_name
}
output "lambda_processing_role_arn" {
value = module.cumulus.lambda_processing_role_arn
}
Expand Down

0 comments on commit 30cd24f

Please sign in to comment.