provider/aws: Raise timeout for DHCP opts creation (#15084)
This commit is contained in:
parent
a464e97979
commit
d7f54ed68d
|
@ -126,7 +126,7 @@ func resourceAwsVpcDhcpOptionsCreate(d *schema.ResourceData, meta interface{}) e
|
||||||
Pending: []string{"pending"},
|
Pending: []string{"pending"},
|
||||||
Target: []string{"created"},
|
Target: []string{"created"},
|
||||||
Refresh: resourceDHCPOptionsStateRefreshFunc(conn, d.Id()),
|
Refresh: resourceDHCPOptionsStateRefreshFunc(conn, d.Id()),
|
||||||
Timeout: 1 * time.Minute,
|
Timeout: 5 * time.Minute,
|
||||||
}
|
}
|
||||||
if _, err := stateConf.WaitForState(); err != nil {
|
if _, err := stateConf.WaitForState(); err != nil {
|
||||||
return fmt.Errorf(
|
return fmt.Errorf(
|
||||||
|
|
Loading…
Reference in New Issue