-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
90 lines (74 loc) · 1.4 KB
/
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
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
variable "project_name" {
type = string
default = "watsonxai"
}
variable "install_db2" {
type = bool
description = "Install DB2 instance"
default = false
}
variable "install_cos" {
type = bool
description = "Add COS instance"
default = true
}
variable "install_ml" {
type = bool
description = "Install Machine Learning"
default = true
}
variable "install_os" {
type = bool
description = "Install OpenScale"
default = false
}
variable "install_ws" {
type = bool
description = "Install Watson Studio"
default = true
}
variable "ws_instance" {
type = string
default = "Watson Studio"
}
variable "ml_instance" {
type = string
default = "Watson Machine Learning"
}
variable "os_instance" {
type = string
default = "Watson OpenScale"
}
variable "cos_instance" {
type = string
default = "Cloud Object Storage"
}
variable "db2_instance" {
type = string
default = "Db2"
}
variable "ws_plan" {
type = string
default = "professional-v1"
}
variable "wo_plan" {
type = string
default = "lite"
}
variable "ml_plan" {
type = string
default = "v2-standard"
}
variable "cos_plan" {
type = string
default = "standard"
}
variable "db2_plan" {
type = string
default = "standard"
}
variable "region" {
description = "Region"
type = string
default = "us-south"
}