Skip to content

Commit e748ac5

Browse files
Update README.md
1 parent b9010c1 commit e748ac5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Diff for: README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Terraform vSphere Module (:star2: All new features)
1+
# Terraform vSphere Module
2+
3+
![Terraform Version](https://img.shields.io/badge/Terraform-0.12.6-green.svg)
24

35
For Virtual Machine Provisioning with (Linux/Windows) customization. Thanks to the new enhancements introduced in Terraform v0.12.6 this module include most of the advance features that are available in the resource `vsphere_virtual_machine`.
46

@@ -25,6 +27,7 @@ This Terraform module deploys single or multiple virtual machines of type (Linux
2527
- Ability to configure advance features for the vm.
2628
- Ability to deploy either a datastore or a datastore cluster.
2729
- Ability to enable cpu and memory hot plug features for the VM.
30+
- Ability to define different datastores for data disks
2831

2932
> 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.
3033
@@ -112,6 +115,8 @@ module "example-server-windowsvm-advanced" {
112115
}
113116
data_disk_size_gb = [10, 5] // Aditional Disk to be used
114117
thin_provisioned = ["true", "false"]
118+
disk_datastore = "vsanDatastore" // This will store Template disk in the defined disk_datastore
119+
data_disk_datastore = ["vsanDatastore", "nfsDatastore"] // Datastores for additional data disks
115120
vmdns = ["192.168.0.2", "192.168.0.1"]
116121
vmgateway = "192.168.0.1"
117122
tags = {

0 commit comments

Comments
 (0)