mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-04-22 12:02:11 -04:00
Fixed formatting changed 'init_type' to 'type' Fixed acceptance tests for disk provisioning Fixed docs for change from 'init_type' to 'type'
3.7 KiB
3.7 KiB
layout, page_title, sidebar_current, description
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| vsphere | VMware vSphere: vsphere_virtual_machine | docs-vsphere-resource-virtual-machine | Provides a VMware vSphere virtual machine resource. This can be used to create, modify, and delete virtual machines. |
vsphere_virtual_machine
Provides a VMware vSphere virtual machine resource. This can be used to create, modify, and delete virtual machines.
Example Usage
resource "vsphere_virtual_machine" "web" {
name = "terraform_web"
vcpu = 2
memory = 4096
network_interface {
label = "VM Network"
}
disk {
template = "centos-7"
}
}
Argument Reference
The following arguments are supported:
name- (Required) The virtual machine namevcpu- (Required) The number of virtual CPUs to allocate to the virtual machinememory- (Required) The amount of RAM (in MB) to allocate to the virtual machinedatacenter- (Optional) The name of a Datacenter in which to launch the virtual machinecluster- (Optional) Name of a Cluster in which to launch the virtual machineresource_pool(Optional) The name of a Resource Pool in which to launch the virtual machinegateway- (Optional) Gateway IP address to use for all network interfacesdomain- (Optional) A FQDN for the virtual machine; defaults to "vsphere.local"time_zone- (Optional) The time zone to set on the virtual machine. Defaults to "Etc/UTC"dns_suffixes- (Optional) List of name resolution suffixes for the virtual network adapterdns_servers- (Optional) List of DNS servers for the virtual network adapter; defaults to 8.8.8.8, 8.8.4.4network_interface- (Required) Configures virtual network interfaces; see Network Interfaces below for details.disk- (Required) Configures virtual disks; see Disks below for detailsboot_delay- (Optional) Time in seconds to wait for machine network to be ready.custom_configuration_parameters- (Optional) Map of values that is set as virtual machine custom configurations.
The network_interface block supports:
label- (Required) Label to assign to this network interfaceipv4_address- (Optional) Static IP to assign to this network interface. Interface will use DHCP if this is left blank. Currently only IPv4 IP addresses are supported.ipv4_prefix_length- (Optional) prefix length to use when statically assigning an IP.
The following arguments are maintained for backwards compatibility and may be removed in a future version:
ip_address- _Deprecated, please useipv4_addressinstead.subnet_mask- _Deprecated, please useipv4_prefix_lengthinstead.
The disk block supports:
template- (Required if size not provided) Template for this disk.datastore- (Optional) Datastore for this disksize- (Required if template not provided) Size of this disk (in GB).iops- (Optional) Number of virtual iops to allocate for this disk.type- (Optional) 'eager_zeroed' (the default), or 'thin' are supported options.
Attributes Reference
The following attributes are exported:
id- The instance ID.name- See Argument Reference above.vcpu- See Argument Reference above.memory- See Argument Reference above.datacenter- See Argument Reference above.network_interface/label- See Argument Reference above.network_interface/ipv4_address- See Argument Reference above.network_interface/ipv4_prefix_length- See Argument Reference above.network_interface/ipv6_address- Assigned static IPv6 address.network_interface/ipv6_prefix_length- Prefix length of assigned static IPv6 address.