-
Notifications
You must be signed in to change notification settings - Fork 9.2k
New issue
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
Support Aurora Serverless v2 #24349
Comments
I'm looking into contributing the necessary changes, I think I'm going to be able to submit a PR tonight. |
Hey @njoerd114 👋 Thank you for taking the time to raise this, and for taking the time to submit a PR as well! We wanted to touch base here, given that this issue received so much attention so quickly, to let y'all know that we've noticed and will be prioritizing working on getting this in soon! 🙂 |
Has there been any progress on incorporating this? We are looking to upgrade to v2 as soon as possible. |
Hi! How’s this process coming? We are currently trying to deploy v2 and this is what we need to keep our infrastructure in code. @njoerd114 already submitted the PR 4 days ago. |
@justinretzolk do we have an eta on getting this merged in? We really need this as soon as possible so we can migrate before we ramp up production v1 kinda sucks. |
Highly appreciated here as well ... going to replace >50 RDS instances with serverless v2 hopefully :) |
I saw this was added to the 4.12.0 milestone. Is there any estimate to when that will be released? Thanks everyone for all your contributions! |
Thanks @ewbankkit! |
This functionality has been released in v4.12.0 of the Terraform AWS Provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template. Thank you! |
Here's one we use in the acceptance tests: data "aws_rds_engine_version" "test" {
engine = "aurora-postgresql"
preferred_versions = ["13.6"]
}
resource "aws_rds_cluster" "test" {
cluster_identifier = "testing123"
master_password = "barbarbarbar"
master_username = "foo"
skip_final_snapshot = true
engine = data.aws_rds_engine_version.test.engine
engine_version = data.aws_rds_engine_version.test.version
serverlessv2_scaling_configuration {
max_capacity = 12
min_capacity = 1
}
} |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Community Note
Description
AWS just recently announced the general availability of RDS Aurora Serverless v2. The new serverless mechanism drastically improves scalability.
New or Affected Resource(s)
Potential Terraform Configuration
References
The text was updated successfully, but these errors were encountered: