-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
45 lines (38 loc) · 1017 Bytes
/
vars.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
#
# Variables for TKC Demo
#
variable "thunder_username" {
description = "Username to use for API access to Thunder node"
type = string
default = "admin"
}
variable "thunder_password" {
description = "Password for Username for API access to Thunder node"
type = string
default = "a10"
}
variable "thunder_ip_address" {
description = "IP address of MGMT port on Thunder node"
type = string
default = "10.1.1.32"
}
variable "thunder_vip" {
description = "IP address of VIP on Thunder node"
type = string
default = "10.1.1.44"
}
variable "thunder_vip_2" {
description = "IP address of VIP on Thunder node"
type = string
default = "10.1.1.46"
}
variable "prov_config_path_1" {
description = "Path to a Kubernetes config file"
type = string
default = "./microk8s.config"
}
variable "prov_config_path_2" {
description = "Path to a Kubernetes config file"
type = string
default = "./k3os.config"
}