diff --git a/CHANGELOG.md b/CHANGELOG.md index dd4299b..f839387 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [9.7.0](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/compare/v9.6.0...v9.7.0) (2024-07-27) + + +### Features + +* Support for `scaling_configuration.seconds_before_timeout` in Serverless V1 ([#461](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/issues/461)) ([d798147](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/commit/d7981474a4ec2a0a53900c41d25b31329fab2afd)) + ## [9.6.0](https://github.com/terraform-aws-modules/terraform-aws-rds-aurora/compare/v9.5.0...v9.6.0) (2024-07-20) diff --git a/examples/serverless/main.tf b/examples/serverless/main.tf index e8f3c49..1e7e4a4 100644 --- a/examples/serverless/main.tf +++ b/examples/serverless/main.tf @@ -56,6 +56,7 @@ module "aurora_postgresql" { min_capacity = 2 max_capacity = 16 seconds_until_auto_pause = 300 + seconds_before_timeout = 600 timeout_action = "ForceApplyCapacityChange" } diff --git a/main.tf b/main.tf index 6390a8a..c82cdc4 100644 --- a/main.tf +++ b/main.tf @@ -118,6 +118,7 @@ resource "aws_rds_cluster" "this" { max_capacity = try(scaling_configuration.value.max_capacity, null) min_capacity = try(scaling_configuration.value.min_capacity, null) seconds_until_auto_pause = try(scaling_configuration.value.seconds_until_auto_pause, null) + seconds_before_timeout = try(scaling_configuration.value.seconds_before_timeout, null) timeout_action = try(scaling_configuration.value.timeout_action, null) } }