Skip to content

Commit 5e32973

Browse files
Create README.md
1 parent a2d10b6 commit 5e32973

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

examples/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)