You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Deploys (Single/Multiple) Virtual Machines to your vSphere environment
15
10
16
11
This Terraform module deploys single or multiple virtual machines of type (Linux/Windows) with following features:
@@ -30,6 +25,7 @@ This Terraform module deploys single or multiple virtual machines of type (Linux
30
25
- Ability to define different datastores for data disks.
31
26
- Ability to define different scsi_controllers per disk, including data disks.
32
27
- Ability to define network type per interface and disk label per attached disk.
28
+
- Ability to define depend on using variable vm_depends_on
33
29
34
30
> Note: For module to work it needs number of required variables corresponding to an existing resources in vSphere. Please refer to variable section for the list of required variables.
35
31
@@ -42,7 +38,7 @@ You can also download the entire module and use your own predefined variables to
42
38
```hcl
43
39
module "example-server-linuxvm" {
44
40
source = "Terraform-VMWare-Modules/vm/vsphere"
45
-
version = "1.2.0"
41
+
version = "1.3.0"
46
42
vmtemp = "TemplateName"
47
43
instances = 1
48
44
vmname = "example-server-windows"
@@ -95,7 +91,7 @@ Below is an example of windows deployment with some of the available feature set
95
91
```hcl
96
92
module "example-server-windowsvm-advanced" {
97
93
source = "Terraform-VMWare-Modules/vm/vsphere"
98
-
version = "1.2.0"
94
+
version = "1.3.0"
99
95
dc = "Datacenter"
100
96
vmrp = "cluster/Resources" #Works with ESXi/Resources
0 commit comments