forked from vmware-samples/vcenter-event-broker-appliance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.pkr.hcl
94 lines (77 loc) · 1.83 KB
/
variables.pkr.hcl
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
87
88
89
90
91
92
93
94
variable "VEBA_COMMIT" {
type = string
description = "VEBA Github Commit ID (auto-generated by build)"
default = "NULL"
}
variable "VEBA_VERSION" {
type = string
description = "VEBA Version (auto-generated by build)"
default = "NULL"
}
variable "builder_host" {
type = string
description = "ESXi Server IP Address or FQDN"
}
variable "builder_host_datastore" {
type = string
description = "ESXi Datastore"
}
variable "builder_host_password" {
type = string
description = "ESXi root user password"
}
variable "builder_host_portgroup" {
type = string
description = "ESXi network portgroup"
}
variable "builder_host_username" {
type = string
description = "ESXi username"
}
variable "guest_password" {
type = string
description = "Root user password"
}
variable "guest_username" {
type = string
description = "Root user username"
default = "root"
}
variable "iso_checksum" {
type = string
description = "MD5 Checksum of the ISO File"
}
variable "iso_url" {
type = string
description = "URL to ISO Installer"
}
variable "numvcpus" {
type = string
description = "vCPU configuration for VEBA Appliance"
}
variable "ovftool_deploy_vcenter" {
type = string
description = "vCenter Server IP Address or FQDN"
}
variable "ovftool_deploy_vcenter_password" {
type = string
description = "vCenter Server Password"
}
variable "ovftool_deploy_vcenter_username" {
type = string
description = "vCenter Server Username"
}
variable "ramsize" {
type = string
description = "Memory (MB) configuration for VEBA appliance"
}
variable "veba_ovf_template" {
type = string
description = "Name of the Photon OVF template file"
default = "photon.xml.template"
}
variable "vm_name" {
type = string
description = "Virtual Machine name for VEBA Appliance"
default = "VMware_Event_Broker_Appliance"
}