-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
31 lines (25 loc) · 918 Bytes
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -------------------------------------------------------------
# File Name: variables.tf
# Defining simple variables required for VM deployment
#
# Tue Oct 6 09:50:12 GMT 2020 - juliusn - initial script
# -------------------------------------------------------------
# -------------------------------------------------------------
# PROVIDER - VMware vSphere vCenter connection
# -------------------------------------------------------------
variable "provider_vsphere_host" {
description = "vCenter server FQDN or IP"
type = string
}
variable "provider_vsphere_user" {
description = "vSphere username to use to connect to the environment"
type = string
}
variable "provider_vsphere_password" {
description = "vSphere password"
type = string
}
variable "provider_vsphere_unverified_ssl" {
description = "If there is a self-signed cert"
default = true
}