-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathvariables.tf
More file actions
86 lines (70 loc) · 1.51 KB
/
variables.tf
File metadata and controls
86 lines (70 loc) · 1.51 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
78
79
80
81
82
83
84
85
86
variable "nsip" {
description = "NSIP address"
type = list(string)
}
variable "gw_ip" {
description = "Gateway IP address"
type = string
}
variable "subnetmask" {
description = "Subnet Mask"
type = string
}
variable "vsphere_ip" {
description = "IP Address of vsphere"
type = string
}
variable "vsphere_username" {
description = "User name for vsphere"
type = string
}
variable "vsphere_password" {
description = "vSphere password"
sensitive = true
type = string
}
variable "datacenter_name" {
description = "Data Center name"
type = string
}
variable "datastore_name" {
description = "Data Store Name"
type = string
}
variable "resource_pool_name" {
description = "Resource Pool Name"
type = string
}
variable "resource_host" {
description = "ESXi host ip"
type = string
}
variable "nic_01_network_name" {
description = "Network name for 1/1 NIC"
type = string
}
variable "virtual_machine_name" {
description = "Virtual machine names in list(string)"
type = string
}
variable "remote_vpx_ovf_path" {
description = "OVF path"
type = string
}
variable "memory" {
description = "VPX memory in MB"
type = number
}
variable "num_cpus" {
description = "VPX cpu count"
type = number
}
variable "iso_output_dir" {
description = "Directory which will be used to construct userdata iso file"
type = string
default = "iso_preboot_config"
}
variable "iso_destination_folder" {
description = "Target directory in datastore to upload iso file"
type = string
}