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 := resource.StateChangeConf{
|
||||
Pending: []string{"PENDING"},
|
||||
Target: "INSYNC",
|
||||
Timeout: 10 * time.Minute,
|
||||
Delay: 15 * time.Second,
|
||||
Pending: []string{"PENDING"},
|
||||
Target: "INSYNC",
|
||||
Timeout: 10 * time.Minute,
|
||||
MinTimeout: 3 * time.Second,
|
||||
Refresh: func() (result interface{}, state string, err error) {
|
||||
return resource_aws_r53_wait(r53, resp.ChangeInfo.ID)
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue