Skip to content

Commit

Permalink
Add more retry rules in Terragrunt configuration
Browse files Browse the repository at this point in the history
Quota exceeded for resources: The quota might be taken up
by an ongoing cleanup, so a retry might be useful.

Error waiting for instance: Sometimes an instance does not
come up correctly, a retry then makes sense.

Signed-off-by: Christian Berendt <berendt@osism.tech>
  • Loading branch information
berendt authored and osfrickler committed Apr 19, 2023
1 parent 65e1964 commit b0dc804
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions terraform/terragrunt.hcl
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
retryable_errors = [
"(?s).*operation timed out.*",
"(?s).*The backend server is unreachable.*",
"(?s).*Quota exceeded for resources.*",
"(?s).*Error waiting for instance.*",
]

0 comments on commit b0dc804

Please sign in to comment.