Skip to content

Commit

Permalink
r/resource_aws_subnet: increase deletion timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergiusz Urbaniak committed Sep 6, 2017
1 parent 4cb6fc0 commit 9309350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_subnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func resourceAwsSubnetDelete(d *schema.ResourceData, meta interface{}) error {
wait := resource.StateChangeConf{
Pending: []string{"pending"},
Target: []string{"destroyed"},
Timeout: 10 * time.Minute,
Timeout: 30 * time.Minute,
MinTimeout: 1 * time.Second,
Refresh: func() (interface{}, string, error) {
_, err := conn.DeleteSubnet(req)
Expand Down

0 comments on commit 9309350

Please sign in to comment.