Skip to content

Commit

Permalink
provider/aws: Raise timeout for DHCP opts creation (#15084)
Browse files Browse the repository at this point in the history
  • Loading branch information
radeksimko authored Jun 5, 2017
1 parent a464e97 commit d7f54ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/providers/aws/resource_aws_vpc_dhcp_options.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 126,7 @@ func resourceAwsVpcDhcpOptionsCreate(d *schema.ResourceData, meta interface{}) e
Pending: []string{"pending"},
Target: []string{"created"},
Refresh: resourceDHCPOptionsStateRefreshFunc(conn, d.Id()),
Timeout: 1 * time.Minute,
Timeout: 5 * time.Minute,
}
if _, err := stateConf.WaitForState(); err != nil {
return fmt.Errorf(
Expand Down

0 comments on commit d7f54ed

Please sign in to comment.