Upped default maxRetryTimeout from 30s -> 60s

This commit is contained in:
Nicki Watt 2015-11-23 11:45:16 +00:00
parent 49195f8b77
commit 3809315af9
2 changed files with 3 additions and 3 deletions

View File

@ -47,8 +47,8 @@ func Provider() terraform.ResourceProvider {
"maxRetryTimeout": &schema.Schema{
Type: schema.TypeInt,
Optional: true,
DefaultFunc: schema.EnvDefaultFunc("VCD_MAX_RETRY_TIMEOUT", 30),
Description: "Max num seconds to wait for successful response when operating on resources within vCloud (defaults to 30)",
DefaultFunc: schema.EnvDefaultFunc("VCD_MAX_RETRY_TIMEOUT", 60),
Description: "Max num seconds to wait for successful response when operating on resources within vCloud (defaults to 60)",
},
},

View File

@ -54,5 +54,5 @@ The following arguments are used to configure the VMware vCloud Director Provide
amount of time (in seconds) you are prepared to wait for interactions on resources managed
by vCloud Director to be successful. If a resource action fails, the action will be retried
(as long as it is still within the `maxRetryTimeout` value) to try and ensure success.
Defaults to 30 seconds if not set.
Defaults to 60 seconds if not set.
Can also be specified with the `VCD_MAX_RETRY_TIMEOUT` environment variable.