generated from cloud-native-toolkit/template-terraform-gitops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
155 lines (128 loc) · 3.13 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
variable "gitops_config" {
type = object({
boostrap = object({
argocd-config = object({
project = string
repo = string
url = string
path = string
})
})
infrastructure = object({
argocd-config = object({
project = string
repo = string
url = string
path = string
})
payload = object({
repo = string
url = string
path = string
})
})
services = object({
argocd-config = object({
project = string
repo = string
url = string
path = string
})
payload = object({
repo = string
url = string
path = string
})
})
applications = object({
argocd-config = object({
project = string
repo = string
url = string
path = string
})
payload = object({
repo = string
url = string
path = string
})
})
})
description = "Config information regarding the gitops repo structure"
}
variable "git_credentials" {
type = list(object({
repo = string
url = string
username = string
token = string
}))
description = "The credentials for the gitops repo(s)"
sensitive = true
}
variable "namespace" {
type = string
description = "Namespace where cp4d is provisioned and where the db2 will be created"
}
variable "kubeseal_cert" {
type = string
description = "The certificate/public key used to encrypt the sealed secrets"
default = ""
}
variable "server_name" {
type = string
description = "The name of the server"
default = "default"
}
variable "storageClass" {
type = string
description = "The RWX/RWO Storage Class needed to create db2"
}
variable "database_name" {
type = string
description = "The name of the database to be created"
}
variable "db2instancetype" {
type = string
description = "type of db2 intance to be created - db2oltp of db2wh"
default = "db2oltp"
}
variable "db2instanceversion" {
type = string
description = "version of the DB2 instance"
default = "11.5.7.0-x86_64"
}
variable "defaultuserpwd" {
type = string
description = "Password of the default user"
default = "db2password"
}
variable "cp4dclusterhost" {
type = string
description = "The service name for cp4d"
default = "https://ibm-nginx-svc"
}
variable "db2host" {
type = string
description = "The https service name for database"
default = "https://database-core-svc:3025"
}
variable "pvcsize" {
type = string
description = "The size of the pvc that needs to be created for db2"
}
variable "dbconnectionhostprefix" {
type = string
description = "Prefix of the db2 connection host"
default = "c-db2oltp"
}
variable "dbconnectionhostsuffix" {
type = string
description = "Suffix of the db2 connection host"
default = "db2u-engn-svc"
}
variable "cpd_operator_namespace" {
type = string
description = "Namespace for cpd commmon services"
default = "cpd-operators"
}