Skip to content

Commit

Permalink
merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
magreenbaum committed Aug 5, 2024
2 parents ee771b8 + d3b2c08 commit 612fd44
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
1 change: 1 addition & 0 deletions examples/serverless/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
}
Expand Down

0 comments on commit 612fd44

Please sign in to comment.