provider/aws: Slow down our r53 waits
This commit is contained in:
parent
8e7e65770d
commit
12d54bd949
|
@ -47,9 +47,11 @@ func resource_aws_r53_zone_create(
|
||||||
|
|
||||||
// Wait until we are done initializing
|
// Wait until we are done initializing
|
||||||
wait := resource.StateChangeConf{
|
wait := resource.StateChangeConf{
|
||||||
Pending: []string{"PENDING"},
|
Delay: 15 * time.Second,
|
||||||
Target: "INSYNC",
|
Pending: []string{"PENDING"},
|
||||||
Timeout: 10 * time.Minute,
|
Target: "INSYNC",
|
||||||
|
Timeout: 10 * time.Minute,
|
||||||
|
MinTimeout: 3 * time.Second,
|
||||||
Refresh: func() (result interface{}, state string, err error) {
|
Refresh: func() (result interface{}, state string, err error) {
|
||||||
return resource_aws_r53_wait(r53, resp.ChangeInfo.ID)
|
return resource_aws_r53_wait(r53, resp.ChangeInfo.ID)
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue