issuse:
aws_rds_cluster.default: Failed to modify RDS Cluster (demo): InvalidParameterCombination: The specified new engine version is same as current version: 9.6.9
status code: 400, request id: 04f08c7a-3aee-4754-96f1-b1e33bcacbe6
it happened when I trying to restore the last snapshot and the snapshot already configured to with rds engine version 9.6.9 it also happens when I trying to upgrade to 10.4.
so, for now, I back to version 1.39
Same problem here ! Had to switch back to 1.39 to make it work.
Ran into this myself tonight.
TF v0.11.10
AWS v1.41
Aurora RDS PostrgreSQL v10.4
Error
* aws_rds_cluster.postgresql: 1 error(s) occurred:
* aws_rds_cluster.postgresql: Failed to modify RDS Cluster (test-postgresql-cluster): InvalidParameterCombination: The specified new engine version is same as current version: 10.4
status code: 400, request id: 565a<...>8b9fe5
Edit
Confirmed, forcing AWS provider to v1.39 got this working.
changing my provider to:
provider "aws" {
region = "us-east-1"
version = "~> 1.39.0"
}
fixed this, as it did for others. I was also trying to create an rds aurora postgresql 10.4 cluster from snapshot with latest aws provider and latest tf.
I was able to reproduce this with some new acceptance testing -- working on a fix now. 👍
--- FAIL: TestAccAWSRDSCluster_SnapshotIdentifier_EngineVersion_Different (307.45s)
testing.go:538: Step 0 error: Error applying: 1 error occurred:
* aws_rds_cluster.test: 1 error occurred:
* aws_rds_cluster.test: Failed to modify RDS Cluster (tf-acc-test-5310186777500539203): InvalidParameterCombination: The specified new engine version is same as current version: 9.6.6
status code: 400, request id: cd9bb70c-0af8-4783-95b9-ef9fa72251d0
--- FAIL: TestAccAWSRDSCluster_SnapshotIdentifier_EngineVersion_Equal (307.49s)
testing.go:538: Step 0 error: Error applying: 1 error occurred:
* aws_rds_cluster.test: 1 error occurred:
* aws_rds_cluster.test: Failed to modify RDS Cluster (tf-acc-test-4108683443326527325): InvalidParameterCombination: The specified new engine version is same as current version: 9.6.3
status code: 400, request id: ee7ee554-035b-43e7-9a66-9fd57254a04e
Pull request submitted with acceptance testing to cover this going forward: #6391
Sorry for the trouble, folks! The fix for this has been merged and will release with version 1.43.1 of the AWS provider, likely later today. 👍
Thank you sir!
This has been released in version 1.43.1 of the AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading.
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.
If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!
Most helpful comment
Same problem here ! Had to switch back to 1.39 to make it work.