-
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
Handle RDS Cluster state resetting-master-credentials
#2781
#2791
Handle RDS Cluster state resetting-master-credentials
#2781
#2791
Conversation
Addresses error when creating a new aws_rds_cluster using the `snapshot_identifier` option. ``` * aws_rds_cluster.aurora_postgres: [WARN] Error waiting for RDS Cluster state to be "available": unexpected state 'resetting-master-credentials', wanted target 'available'. last error: %!s(<nil>) ```
resetting-master-credentials
#2781resetting-master-credentials
#2781
I couldn't find any tests for verifying the available states, but this is also my first golang so it could be user error. I am running a create locally to see if it works and if so I will remove the [WIP] label. I mirrored this off of #2409 |
resetting-master-credentials
#2781resetting-master-credentials
#2781
Success!
|
Fixes #2781. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @TRII! This fix looks correct - good call on moving the allowable states out of band.
This has been released in terraform-provider-aws version 1.7.0. 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! |
Addresses error when creating a new
aws_rds_cluster
using thesnapshot_identifier
option.Fixes #2781