Skip to content

Commit 4b694a4

Browse files
authored
Increase aws_rds_cluster timeout to 40 minutes
The timeout was increased to 40 minutes when creating a new cluster in hashicorp#8052. However when creating a cluster from a snapshot the timeout is still 15 minutes. I've increased this to 40 minutes.
1 parent 5669185 commit 4b694a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/providers/aws/resource_aws_rds_cluster.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ func resourceAwsRDSClusterCreate(d *schema.ResourceData, meta interface{}) error
274274
Pending: []string{"creating", "backing-up", "modifying"},
275275
Target: []string{"available"},
276276
Refresh: resourceAwsRDSClusterStateRefreshFunc(d, meta),
277-
Timeout: 15 * time.Minute,
277+
Timeout: 40 * time.Minute,
278278
MinTimeout: 3 * time.Second,
279279
Delay: 30 * time.Second, // Wait 30 secs before starting
280280
}

0 commit comments

Comments
 (0)