-
Notifications
You must be signed in to change notification settings - Fork 9.6k
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
providers/aws: Retry deleting IAM Server Cert on dependency violation #3898
Conversation
This will retry deleting a server cert if it throws an error about being in use with an ELB (that we've likely just deleted) Includes test for ELB+IAM SSL cert bug dependency violation
LGTM |
providers/aws: Retry deleting IAM Server Cert on dependency violation
@catsby has this made it into a release yet? |
@johnhamelink yes, it was released in v0.6.7. Are you hitting something similar? |
@catsby im hitting similar. I want to change cert for ELB but fail with error.
|
@catsby even more. terraform when i first get this error created a new launch conf and didnt deleted old one, so it ended up being two ec2 launch conf ( i use create_before_destroy + name generate like describedc in docs) |
The refresh logic here is for when the cert isn't found during the ELB creation, the error you post is regarding the cert itself. Looks like |
I opened #4689 for the name generation |
…-group New Resource: aws_waf_rule_group
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 have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
This PR does some things. I would normally separate them, but the two issues it resolves (Fixes #3412 and Fixes #3275, Fixes #3301) ended up being kind of coupled so they get fixed in one swoop.