Skip to content
Open
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@

## Unreleased

* Upgrade to [Cumulus v21.2.0](https://github.com/nasa/cumulus/releases/tag/v21.2.0)
* add rds variable db_log_min_duration_ms
* add rds variable enabled_cloudwatch_logs_exports

## v21.0.1.0
* Updrade to [Cumulus v21.0.1](https://github.com/nasa/cumulus/releases/tag/v21.0.1)

* Upgrade to [Cumulus v21.0.1](https://github.com/nasa/cumulus/releases/tag/v21.0.1)
* Bump dashboard version to [14.0.0](https://github.com/nasa/cumulus-dashboard/releases/tag/v14.0.0) in deploy.yml
* Update default CMA version to [2.0.5](https://github.com/nasa/cumulus-message-adapter/releases/tag/v2.0.5)

Expand Down
2 changes: 1 addition & 1 deletion daac/s3-replicator.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ locals {
}

module "s3-replicator" {
source = "https://github.com/nasa/cumulus/releases/download/v21.0.1/terraform-aws-cumulus-s3-replicator.zip"
source = "https://github.com/nasa/cumulus/releases/download/v21.2.0/terraform-aws-cumulus-s3-replicator.zip"

prefix = local.prefix
vpc_id = data.aws_vpc.application_vpcs.id
Expand Down
2 changes: 1 addition & 1 deletion rds/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resource "random_string" "user_db_pass" {
}

module "rds_cluster" {
source = "https://github.com/nasa/cumulus/releases/download/v21.0.1/terraform-aws-cumulus-rds.zip"
source = "https://github.com/nasa/cumulus/releases/download/v21.2.0/terraform-aws-cumulus-rds.zip"

backup_retention_period = var.backup_retention_period
backup_window = var.backup_window
Expand Down
11 changes: 11 additions & 0 deletions rds/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -117,3 +117,14 @@ variable "snapshot_identifier" {
type = string
default = null
}

variable "db_log_min_duration_ms" {
description = "The threshold (in ms) for logging slow queries in RDS. Default to -1 (disabled)"
default = -1
}

variable "enabled_cloudwatch_logs_exports" {
description = "Set of log types to export to CloudWatch Logs. For Amazon Aurora PostgreSQL, the only valid value is [\"postgresql\"]."
type = list(string)
default = []
}
2 changes: 1 addition & 1 deletion workflows/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "example_workflow" {
source = "https://github.com/nasa/cumulus/releases/download/v21.0.1/terraform-aws-cumulus-workflow.zip"
source = "https://github.com/nasa/cumulus/releases/download/v21.2.0/terraform-aws-cumulus-workflow.zip"

prefix = local.prefix
name = "ExampleWorkflow"
Expand Down
Loading