Skip to main content
Prowler’s AWS Provider leverages Boto3’s Standard retry mode to automatically retry client calls to AWS services when encountering errors or exceptions.

Timeout Configuration

Every AWS API call is bounded by two timeouts:
  • Connect timeout: seconds to wait to establish a connection (TCP, proxy tunnel and TLS handshake) to the AWS endpoint. Prowler’s default is 10 seconds, configurable via --aws-connect-timeout 5.
  • Read timeout: seconds to wait for a response once connected. Prowler’s default is 60 seconds, configurable via --aws-read-timeout 30.
Both timeouts can also be set through environment variables, which is the way to tune them in Prowler Cloud and other deployments without a CLI:
CLI flags take precedence over the environment variables. Prowler sets both timeouts explicitly, so AWS_DEFAULTS_MODE and a connect_timeout in ~/.aws/config are ignored; use the flag or the environment variable instead.
Boto3 defaults both timeouts to 60 seconds. In networks with restricted egress (for example VPC endpoints for a subset of services, GovCloud or private deployments), every AWS service without a reachable endpoint used to cost up to 4 attempts × 60 seconds (the first call plus the 3 retries) for each region. Prowler lowers the connect timeout to 10 seconds so unreachable endpoints fail fast; lower it further together with --aws-retries-max-attempts 0, which disables retries and leaves a single attempt per call, if a scan still spends most of its time waiting on unreachable services.

Retry Behavior Overview

Boto3’s Standard retry mode includes the following mechanisms:
  • Maximum Retry Attempts: Default value set to 3, configurable via the --aws-retries-max-attempts 5 argument. 0 disables retries.
  • Expanded Error Handling: Retries occur for a comprehensive set of errors.
  • Nondescriptive Transient Error Codes: The retrier applies retry logic to standard HTTP status codes signaling transient errors: 500, 502, 503, 504.
  • Exponential Backoff Strategy: Each retry attempt follows exponential backoff with a base factor of 2, ensuring progressive delay between retries. Maximum backoff time: 20 seconds.

Validating Retry Attempts

For testing or modifying Prowler’s behavior, use the following steps to confirm whether requests are being retried or abandoned:
  • Run prowler with --log-level DEBUG and --log-file debuglogs.txt
  • Search for retry attempts using grep -i 'Retry needed' debuglogs.txt
This approach follows the AWS documentation, which states that if a retry is performed, a message starting with “Retry needed” will be prompted. It is possible to determine the total number of calls made using grep -i 'Sending http request' debuglogs.txt | wc -l.