|
|
|
|
@ -19,12 +19,13 @@ 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}"
|
|
|
|
|
maxRetryTimeout = "${var.vcd_maxRetryTimeout}"
|
|
|
|
|
user = "${var.vcd_user}"
|
|
|
|
|
password = "${var.vcd_pass}"
|
|
|
|
|
org = "${var.vcd_org}"
|
|
|
|
|
url = "${var.vcd_url}"
|
|
|
|
|
vdc = "${var.vcd_vdc}"
|
|
|
|
|
maxRetryTimeout = "${var.vcd_maxRetryTimeout}"
|
|
|
|
|
allow_unverified_ssl = "${var.vcd_allow_unverified_ssl}"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Create a new network
|
|
|
|
|
@ -55,4 +56,9 @@ The following arguments are used to configure the VMware vCloud Director Provide
|
|
|
|
|
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 60 seconds if not set.
|
|
|
|
|
Can also be specified with the `VCD_MAX_RETRY_TIMEOUT` environment variable.
|
|
|
|
|
Can also be specified with the `VCD_MAX_RETRY_TIMEOUT` environment variable.
|
|
|
|
|
* `allow_unverified_ssl` - (Optional) Boolean that can be set to true to
|
|
|
|
|
disable SSL certificate verification. This should be used with care as it
|
|
|
|
|
could allow an attacker to intercept your auth token. If omitted, default
|
|
|
|
|
value is false. Can also be specified with the
|
|
|
|
|
`VCD_ALLOW_UNVERIFIED_SSL` environment variable.
|
|
|
|
|
|