Added docs for maxRetryTimeout

This commit is contained in:
Nicki Watt 2015-11-21 12:50:40 +00:00
parent f1c2be9772
commit 49195f8b77
1 changed files with 12 additions and 5 deletions

View File

@ -19,11 +19,12 @@ Use the navigation to the left to read about the available resources.
```
# Configure the VMware vCloud Director Provider
provider "vcd" {
user = "${var.vcd_user}"
password = "${var.vcd_pass}"
org = "${var.vcd_org}"
url = "${var.vcd_url}"
vdc = "${var.vcd_vdc}"
user = "${var.vcd_user}"
password = "${var.vcd_pass}"
org = "${var.vcd_org}"
url = "${var.vcd_url}"
vdc = "${var.vcd_vdc}"
maxRetryTimeout = "${var.vcd_maxRetryTimeout}"
}
# Create a new network
@ -49,3 +50,9 @@ The following arguments are used to configure the VMware vCloud Director Provide
API operations against. If not set the plugin will select the first virtual
datacenter available to your Org. Can also be specified with the `VCD_VDC` environment
variable.
* `maxRetryTimeout` - (Optional) This provides you with the ability to specify the maximum
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.
Can also be specified with the `VCD_MAX_RETRY_TIMEOUT` environment variable.