From a5f8352e1194ee7dc74a26999747b00ec299bcb5 Mon Sep 17 00:00:00 2001 From: Colin Woodbury Date: Thu, 1 Dec 2016 02:05:40 -0800 Subject: [PATCH] Increase `aws_emr_cluster` timeout to 75 minutes (#10444) --- builtin/providers/aws/resource_aws_emr_cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_emr_cluster.go b/builtin/providers/aws/resource_aws_emr_cluster.go index 27fdf7033f..53d8f06bb2 100644 --- a/builtin/providers/aws/resource_aws_emr_cluster.go +++ b/builtin/providers/aws/resource_aws_emr_cluster.go @@ -275,7 +275,7 @@ func resourceAwsEMRClusterCreate(d *schema.ResourceData, meta interface{}) error Pending: []string{"STARTING", "BOOTSTRAPPING"}, Target: []string{"WAITING", "RUNNING"}, Refresh: resourceAwsEMRClusterStateRefreshFunc(d, meta), - Timeout: 40 * time.Minute, + Timeout: 75 * time.Minute, MinTimeout: 10 * time.Second, Delay: 30 * time.Second, // Wait 30 secs before starting }