-
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
Wait longer for ACM certificates creation. #12371
Wait longer for ACM certificates creation. #12371
Conversation
When an ACM certificate has a lot of SANs (>20), it takes more than 1 minute to AWS to generate all the challenges. This waits for the challenges 5 minutes instead of 1 minute.
Closes #12445 |
Hi. Do we know when this is going to be merged? Currently stuck with this exact problem. Thanks |
@bflad Could you or somebody from the team have a look? I think this PR is very trivial and might be beneficial to a few of us. (Sorry for the mention I don't like to be that guy 🤐 .) |
Just had to apply a horrible workaround. Run the terraform. let it fail. Remove the item from tf state. Wait for the cert to be ready in the console. Get the arn. Re-import into tf state |
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.
Hi @gilbsgilbs 👋 Thank you for fixing this. This seems like the correct adjustment in this case (barring any AWS documentation on how long this process may possibly take). 🚀 I have marked this to also close the older #8530. 👍
This has been released in version 2.64.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 for triage. Thanks! |
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! |
When an ACM certificate has a lot of SANs (>20), it takes more
than 1 minute for AWS to generate all the DNS challenges. This PR
will make the resource wait for the challenges 5 minutes instead of
1 minute.
Closes #12445