-
Notifications
You must be signed in to change notification settings - Fork 0
/
variable.tf
41 lines (40 loc) · 987 Bytes
/
variable.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
variable "topic_1" {
type = list(string)
description = "topics names that should be added to the repository"
default = [
"terraform",
"circleci",
"sonarqube",
"argocd",
"loki",
"spark-operator",
"retool",
"grafana-dashboard",
"prometheus",
"grafana",
"aws",
"argo",
"cognito",
"vcluster",
"kubecost",
"kyverno",
"kubescape"
]
}
variable "topic_2" {
type = list(string)
description = "topics names that should be added to the repository"
default = [
"docker",
"kubernetes",
"superset",
"snowflake",
"opentelemetry",
"argo",
"cognito",
"vcluster",
"kubecost",
"kyverno",
"kubescape",
]
}