From 63eb0ba8709cbd2a479b566fb35ddb9fd4fd1a8f Mon Sep 17 00:00:00 2001 From: Christian Hildebrando Hercules Date: Wed, 4 Jan 2017 13:03:57 -0800 Subject: [PATCH] Increasing timeout for redshift cluster creation This is in response to creating 25 node cluster, and taking longer than 40 min max. --- builtin/providers/aws/resource_aws_redshift_cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_redshift_cluster.go b/builtin/providers/aws/resource_aws_redshift_cluster.go index d31e96ab56..c72b690706 100644 --- a/builtin/providers/aws/resource_aws_redshift_cluster.go +++ b/builtin/providers/aws/resource_aws_redshift_cluster.go @@ -416,7 +416,7 @@ func resourceAwsRedshiftClusterCreate(d *schema.ResourceData, meta interface{}) Pending: []string{"creating", "backing-up", "modifying", "restoring"}, Target: []string{"available"}, Refresh: resourceAwsRedshiftClusterStateRefreshFunc(d, meta), - Timeout: 40 * time.Minute, + Timeout: 75 * time.Minute, MinTimeout: 10 * time.Second, }