-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvariables.tf
More file actions
77 lines (65 loc) · 1.64 KB
/
Copy pathvariables.tf
File metadata and controls
77 lines (65 loc) · 1.64 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
variable "vsphere_user" {
type = string
description = "the username for vsphere"
}
variable "vsphere_password" {
type = string
description = "The password for vsphere"
}
variable "vsphere_server" {
type = string
description = "the hostname or ip address of your vcenter server"
}
variable "vsphere_datacenter" {
type = string
description = "the name of the datacenter"
}
variable "vsphere_datastore" {
type = string
description = "the name of the datastore"
}
variable "vsphere_vm_template" {
type = string
description = "the name of the vm template"
}
variable "vsphere_vm_name" {
type = string
description = "the name of the vm"
}
variable "vsphere_resource_pool" {
type = string
description = "the name of the resourcepool for examples: Cluster1/Resources "
}
variable "vsphere_vm_portgroup" {
type = string
description = "the name of the portgroup"
}
variable "vsphere_vm_cpu" {
type = number
description = "the number of vCpus"
default = 2
}
variable "vsphere_vm_memory" {
type = number
description = "the amount of memory in MB"
default = 2048
}
variable "vsphere_vm_guest" {
type = string
description = "the name of the os type "
default = "ubuntu64Guest"
}
variable "vsphere_vm_disksize" {
type = number
description = "the size of the disk in GB"
default = 20
}
variable "timeout" {
description = "The timeout, in minutes, to wait for the virtual machine clone to complete."
type = number
default = 30
}
variable "linked_clone" {
description = "Clone this virtual machine from a snapshot. Templates must have a single snapshot only in order to be eligible."
default = false
}