-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path00_vars_vhi_cluster.tf
54 lines (46 loc) · 1.05 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
# This file contains variables describing VHI cluster
### VHI image name
variable "vhi_image" {
type = string
default = "VHI-latest.qcow2" # If required, replace image name with the one you have in the cloud
}
### Number of MN nodes
variable "mn_count" {
type = number
default = 3
}
### Number of worker nodes
variable "worker_count" {
type = number
default = 1
}
### Number of CS disks
variable "cs_count" {
type = number
default = 2
}
### Main node flavor name
variable "flavor_main" {
type = string
default = "va-16-32" # If required, replace flavor name with the one you have in the cloud
}
### Worker node flavor name
variable "flavor_worker" {
type = string
default = "va-8-16" # If required, replace flavor name with the one you have in the cloud
}
### Node root password
variable "password_root" {
type = string
default = "Lab_r00t"
}
### Admin panel password
variable "password_admin" {
type = string
default = "Lab_admin"
}
### Storage cluster name
variable "cluster_name" {
type = string
default = "lab"
}