From f7bbcc98b3bff31326c90b2c18e31ed1e3278b32 Mon Sep 17 00:00:00 2001 From: Pepe Fagoaga Date: Mon, 24 Jul 2023 10:47:55 +0200 Subject: [PATCH] docs(boto3-configuration): format list (#2609) --- docs/tutorials/aws/boto3-configuration.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/tutorials/aws/boto3-configuration.md b/docs/tutorials/aws/boto3-configuration.md index c403d65c..c49679b1 100644 --- a/docs/tutorials/aws/boto3-configuration.md +++ b/docs/tutorials/aws/boto3-configuration.md @@ -1,7 +1,9 @@ # Boto3 Retrier Configuration Prowler's AWS Provider uses the Boto3 [Standard](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/retries.html) retry mode to assist in retrying client calls to AWS services when these kinds of errors or exceptions are experienced. This mode includes the following behaviours: + - A default value of 3 for maximum retry attempts. This can be overwritten with the `--aws-retries-max-attempts 5` argument. + - Retry attempts for an expanded list of errors/exceptions: ``` # Transient errors/exceptions @@ -26,6 +28,7 @@ Prowler's AWS Provider uses the Boto3 [Standard](https://boto3.amazonaws.com/v1/ SlowDown EC2ThrottledException ``` + - Retry attempts on nondescriptive, transient error codes. Specifically, these HTTP status codes: 500, 502, 503, 504. - Any retry attempt will include an exponential backoff by a base factor of 2 for a maximum backoff time of 20 seconds.