Increase `aws_emr_cluster` timeout to 75 minutes (#10444)

This commit is contained in:
Colin Woodbury 2016-12-01 02:05:40 -08:00 committed by Paul Stack
parent 9d454b557c
commit a5f8352e11
1 changed files with 1 additions and 1 deletions

View File

@ -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
}