diff --git a/CHANGELOG.md b/CHANGELOG.md index e0b57616..870c357c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/daac/s3-replicator.tf b/daac/s3-replicator.tf index ce76069c..f258e1f7 100644 --- a/daac/s3-replicator.tf +++ b/daac/s3-replicator.tf @@ -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 diff --git a/rds/main.tf b/rds/main.tf index bb1a7ed4..57449fe5 100644 --- a/rds/main.tf +++ b/rds/main.tf @@ -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 diff --git a/rds/variables.tf b/rds/variables.tf index b8e4310e..5bd79f6e 100644 --- a/rds/variables.tf +++ b/rds/variables.tf @@ -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 = [] +} diff --git a/workflows/main.tf b/workflows/main.tf index ca91b9cb..626480b0 100644 --- a/workflows/main.tf +++ b/workflows/main.tf @@ -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"