diff --git a/lib/ansible/module_utils/ec2.py b/lib/ansible/module_utils/ec2.py index 7ac6ae1fcc..b7ecaac1af 100644 --- a/lib/ansible/module_utils/ec2.py +++ b/lib/ansible/module_utils/ec2.py @@ -85,7 +85,8 @@ class AWSRetry(CloudRetry): # https://github.com/boto/boto3/issues/876 (and linked PRs etc) retry_on = [ 'RequestLimitExceeded', 'Unavailable', 'ServiceUnavailable', - 'InternalFailure', 'InternalError', 'TooManyRequestsException' + 'InternalFailure', 'InternalError', 'TooManyRequestsException', + 'Throttling' ] not_found = re.compile(r'^\w+.NotFound')