Skip to content

Commit

Permalink
Increase aws_rds_cluster timeout to 40 minutes
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
qivers authored Sep 2, 2016
1 parent 5669185 commit 4b694a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/providers/aws/resource_aws_rds_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 4b694a4

Please sign in to comment.