Skip to content

Commit

Permalink
[Bug Fix] state/rds-aurora-serverless-postgres - Fix MinCapacity and …
Browse files Browse the repository at this point in the history
…MaxCapacity allowed values (closes #477) (#478)
  • Loading branch information
michaelwittig authored Aug 14, 2020
1 parent cf6944a commit 806dd14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions state/rds-aurora-serverless-postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,12 @@ Parameters:
MaxCapacity:
Description: 'The maximum capacity units for a Serverless Aurora cluster.'
Type: String
AllowedValues: [1, 2, 4, 8, 16, 32, 64, 128, 256]
AllowedValues: [2, 4, 8, 16, 32, 64, 192, 384]
Default: 2
MinCapacity:
Description: 'The minimum capacity units for a Serverless Aurora cluster.'
Type: String
AllowedValues: [1, 2, 4, 8, 16, 32, 64, 128, 256]
AllowedValues: [2, 4, 8, 16, 32, 64, 192, 384]
Default: 2
SecondsUntilAutoPause:
Description: 'The time, in seconds, before a Serverless Aurora cluster is paused.'
Expand Down

0 comments on commit 806dd14

Please sign in to comment.