Skip to content

Commit

Permalink
provider/aws: Increase subnet deletion timeout (#13356)
Browse files Browse the repository at this point in the history
  • Loading branch information
radeksimko authored Apr 5, 2017
1 parent 1c0cd0d commit 7715088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/providers/aws/resource_aws_subnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ func resourceAwsSubnetDelete(d *schema.ResourceData, meta interface{}) error {
wait := resource.StateChangeConf{
Pending: []string{"pending"},
Target: []string{"destroyed"},
Timeout: 5 * time.Minute,
Timeout: 10 * time.Minute,
MinTimeout: 1 * time.Second,
Refresh: func() (interface{}, string, error) {
_, err := conn.DeleteSubnet(req)
Expand Down

0 comments on commit 7715088

Please sign in to comment.