From 95046828310e078840bff759df3793ca46b25ee9 Mon Sep 17 00:00:00 2001 From: Radek Simko Date: Sat, 15 Apr 2017 07:56:41 +0100 Subject: [PATCH] aws: Increase default number of retries to 25 (#13673) --- builtin/providers/aws/provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/provider.go b/builtin/providers/aws/provider.go index fd761126c..b1f9c2bf4 100644 --- a/builtin/providers/aws/provider.go +++ b/builtin/providers/aws/provider.go @@ -70,7 +70,7 @@ func Provider() terraform.ResourceProvider { "max_retries": { Type: schema.TypeInt, Optional: true, - Default: 11, + Default: 25, Description: descriptions["max_retries"], },