We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2d10b6 commit 5e32973Copy full SHA for 5e32973
examples/README.md
@@ -0,0 +1,22 @@
1
+# Terraform vSphere examples
2
+
3
+This directory contains various examples for deplpyong Linux/Windows VMs to a vSphere vCenter.
4
5
+## Getting started
6
7
+__Create a connection.tf file and copy the following code.__
8
9
+```hcl
10
11
+# Configure the VMware vSphere Provider
12
+provider "vsphere" {
13
+ user = "fill"
14
+ password = "fill"
15
+ vsphere_server = "fill"
16
17
+ # if you have a self-signed cert
18
+ allow_unverified_ssl = true
19
+}
20
+```
21
22
+__Copy any of the exmpale tf files and fill the required data then run terraform init/plan/apply.__
0 commit comments