FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

vcd_network

Provides a vCloud Director VDC Network. This can be used to create, modify, and delete internal networks for vApps to connect.

Example Usage

resource "vcd_network" "net" {
	name = "my-net"
	edge_gateway = "Edge Gateway Name"
	gateway = "10.10.0.1"

	dhcp_pool {
		start_address = "10.10.0.2"
		end_address = "10.10.0.100"
	}

	static_ip_pool {
		start_address = "10.10.0.152"
		end_address = "10.10.0.254"
	}

}

Argument Reference

The following arguments are supported:

IP Pools

Network interfaces support the following attributes:


See the source of this document at Terraform.io