Increase `aws_emr_cluster` timeout to 75 minutes (#10444)
This commit is contained in:
parent
9d454b557c
commit
a5f8352e11
|
@ -275,7 +275,7 @@ func resourceAwsEMRClusterCreate(d *schema.ResourceData, meta interface{}) error
|
||||||
Pending: []string{"STARTING", "BOOTSTRAPPING"},
|
Pending: []string{"STARTING", "BOOTSTRAPPING"},
|
||||||
Target: []string{"WAITING", "RUNNING"},
|
Target: []string{"WAITING", "RUNNING"},
|
||||||
Refresh: resourceAwsEMRClusterStateRefreshFunc(d, meta),
|
Refresh: resourceAwsEMRClusterStateRefreshFunc(d, meta),
|
||||||
Timeout: 40 * time.Minute,
|
Timeout: 75 * time.Minute,
|
||||||
MinTimeout: 10 * time.Second,
|
MinTimeout: 10 * time.Second,
|
||||||
Delay: 30 * time.Second, // Wait 30 secs before starting
|
Delay: 30 * time.Second, // Wait 30 secs before starting
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue