-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
66 lines (54 loc) · 854 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
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
variable "pool_name" {
type = string
}
variable "template_name" {
type = string
}
variable "networks" {
type = list
default = []
}
variable "disks" {
type = list(object({
size_gb = number
storage = string
label = string
}))
default = []
}
variable "vm_name" {
type = string
}
variable "vm_description" {
type = string
default = ""
}
variable "vm_cpus" {
type = number
}
variable "vm_memory_gb" {
type = number
}
variable "vm_cloud_config" {
type = string
default = ""
}
variable "vm_cloud_network_config" {
type = string
default = ""
}
variable "tags" {
type = list(string)
default = []
}
variable "wait_for_ip" {
type = bool
default = true
}
variable "prevent_destroy" {
type = bool
default = true
}
variable "ignore_change" {
default = "all"
}