We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Amazon Aurora Serverless v2 supports scaling to zero capacity (https://aws.amazon.com/about-aws/whats-new/2024/11/amazon-aurora-serverless-v2-scaling-zero-capacity/). It is not possible to set, in a aws_rds_cluster resource:
serverlessv2_scaling_configuration { min_capacity = 0 max_capacity = 128 seconds_until_auto_pause = 600 }
min_capacity cannot be 0 and seconds_until_auto_pause is undefined.
min_capacity
seconds_until_auto_pause
Similar to executing command: aws rds modify-db-cluster --db-cluster-identifier mycluster --serverless-v2-scaling-configuration MinCapacity=0,MaxCapacity=128,SecondsUntilAutoPause=600
aws rds modify-db-cluster --db-cluster-identifier mycluster --serverless-v2-scaling-configuration MinCapacity=0,MaxCapacity=128,SecondsUntilAutoPause=600
Map RDS feature to Terraform
Allow to set seconds_until_auto_pause and min_capacity=0 in a aws_rds_cluster resource
min_capacity=0
aws_rds_cluster
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the Feature
Amazon Aurora Serverless v2 supports scaling to zero capacity (https://aws.amazon.com/about-aws/whats-new/2024/11/amazon-aurora-serverless-v2-scaling-zero-capacity/).
It is not possible to set, in a aws_rds_cluster resource:
min_capacity
cannot be 0 andseconds_until_auto_pause
is undefined.Expected Behavior
Similar to executing command:
aws rds modify-db-cluster --db-cluster-identifier mycluster --serverless-v2-scaling-configuration MinCapacity=0,MaxCapacity=128,SecondsUntilAutoPause=600
Use Case
Map RDS feature to Terraform
Describe Ideal Solution
Allow to set seconds_until_auto_pause and
min_capacity=0
in aaws_rds_cluster
resourceAlternatives Considered
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: