FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

VMware vCloud Director Provider

The VMware vCloud Director provider is used to interact with the resources supported by VMware vCloud Director. The provider needs to be configured with the proper credentials before it can be used.

Use the navigation to the left to read about the available resources.

~> NOTE: The VMware vCloud Director Provider currently represents initial support and therefore may undergo significant changes as the community improves it.

Example Usage

# 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}"	
       allow_unverified_ssl = "${var.vcd_allow_unverified_ssl}"
}

# Create a new network
resource "vcd_network" "net" {
    ...
}

Argument Reference

The following arguments are used to configure the VMware vCloud Director Provider:


See the source of this document at Terraform.io