Skip to content

Commit

Permalink
fix: ACU values for PostgreSQL Serverless
Browse files Browse the repository at this point in the history
  • Loading branch information
kukushking committed Jul 10, 2023
1 parent 3b9864d commit a9cc836
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test_infra/stacks/databases_stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,8 +597,8 @@ def _setup_postgresql_serverless(self) -> None:
),
scaling=rds.ServerlessScalingOptions(
auto_pause=Duration.minutes(5),
min_capacity=rds.AuroraCapacityUnit.ACU_1,
max_capacity=rds.AuroraCapacityUnit.ACU_1,
min_capacity=rds.AuroraCapacityUnit.ACU_2,
max_capacity=rds.AuroraCapacityUnit.ACU_2,
),
backup_retention=Duration.days(1),
vpc=self.vpc,
Expand Down

0 comments on commit a9cc836

Please sign in to comment.