-
Notifications
You must be signed in to change notification settings - Fork 0
/
00_vars_vhi_cluster.tf
55 lines (47 loc) · 1.25 KB
/
00_vars_vhi_cluster.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
# This file contains variables describing VHI cluster
## VHI image name
variable "vhi-image" {
type = string
default = "VHI-latest.qcow2" # If required, replace the image name with the one you have in the cloud
}
## Main node flavor name
variable "vhi-flavor_main" {
type = string
default = "va-16-32" # If required, replace the flavor name with the one you have in the cloud
}
## Worker node flavor name
variable "vhi-flavor_worker" {
type = string
default = "va-8-16" # If required, replace the flavor name with the one you have in the cloud
}
## VHI node storage policy
variable "vhi-storage_policy" {
type = string
default = "default" # If required, replace the storage policy with the one you have in the cloud
}
# Do not change the variables below unless you know what you're doing
## Number of MN nodes
variable "vhi-mn_count" {
type = number
default = 3
}
## Number of worker nodes
variable "vhi-worker_count" {
type = number
default = 1
}
## Storage cluster name
variable "vhi-cluster_name" {
type = string
default = "lab"
}
## Node root password
variable "vhi-password_root" {
type = string
default = "Lab_r00t"
}
## Admin panel password
variable "vhi-password_admin" {
type = string
default = "Lab_admin"
}