-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
70 lines (55 loc) · 1.03 KB
/
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
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
variable "datacenter" {
description = "Datacenter id"
}
variable "datastore" {
description = "Datastore name"
}
variable "vm_template" {
description = "Template name"
}
variable "name" {
description = "VM name"
}
variable "network" {
description = "VM Network"
}
variable "cpus" {
default = "2"
}
variable "memory" {
default = "2048"
}
variable "disk_size" {
default = "120"
}
variable "public_key" {
description = "Public key file path"
}
variable "user_data" {
description = "userdata"
default = ""
}
variable "user_data_variables" {
description = "userdata variables"
default = {}
}
variable "ipv4_address" {
description = "ip address for vm network"
default = null
}
variable "ipv4_netmask" {
description = "netmask for vm network"
default = null
}
variable "ipv4_gateway" {
description = "gateway for vm network"
default = null
}
variable "dhcp" {
description = "enable dhcp"
default = true
}
variable "domain" {
description = "search domain"
default = ""
}