Merge pull request #8623 from qivers/master

Increase aws_rds_cluster timeout to 40 minutes
This commit is contained in:
Paul Stack 2016-09-02 14:25:42 +01:00 committed by GitHub
commit 7ed729507c
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ func resourceAwsRDSClusterCreate(d *schema.ResourceData, meta interface{}) error
Pending: []string{"creating", "backing-up", "modifying"},
Target: []string{"available"},
Refresh: resourceAwsRDSClusterStateRefreshFunc(d, meta),
Timeout: 15 * time.Minute,
Timeout: 40 * time.Minute,
MinTimeout: 3 * time.Second,
Delay: 30 * time.Second, // Wait 30 secs before starting
}