-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.tf
107 lines (104 loc) · 1.88 KB
/
options.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
variable "compute_nodes_count_options" {
type = list(object({
value = number
prettyName = string
}))
default = [
{
value = 3
prettyName = "3"
},
{
value = 6
prettyName = "6"
},
{
value = 9
prettyName = "9"
}
]
}
variable "compute_nodes_flavor_options" {
type = list(object({
value = string
prettyName = string
}))
default = [
{
value = "b3c.4x16"
prettyName = "b3c.4x16 (4 vCPU x 16GB - 100GB Secondary Storage)"
},
{
value = "b3c.8x32"
prettyName = "b3c.8x32 (8 vCPU x 32GB - 100GB Secondary Storage)"
},
{
value = "b3c.16x64"
prettyName = "b3c.16x64 (16 vCPU x 64GB - 100GB Secondary Storage)"
},
{
value = "b3c.16x64.300gb"
prettyName = "b3c.16x64.300gb (16 vCPU x 64GB - 300GB Secondary Storage)"
},
{
value = "b3c.32x128"
prettyName = "b3c.32x128 (32 vCPU x 128GB - 100GB Secondary Storage)"
}
]
}
variable "nfs_options" {
type = list(object({
value = number
prettyName = string
}))
default = [
{
value = 0
prettyName = "None"
},
{
value = 500
prettyName = "500 GB"
},
{
value = 1000
prettyName = "1 TB"
},
{
value = 2000
prettyName = "2 TB"
},
{
value = 4000
prettyName = "4 TB"
}
]
}
variable "ocp_version_options" {
type = list(object({
value = string
prettyName = string
}))
default = [
{
value = "4.10"
prettyName = "4.10"
},
{
value = "4.9"
prettyName = "4.9"
},
{
value = "4.8"
prettyName = "4.8"
},
{
value = "4.7"
prettyName = "4.7"
},
{
value = "4.6"
prettyName = "4.6"
}
]
}