This repository has been archived by the owner on Sep 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
194 lines (179 loc) · 4.27 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
variable "iam_path" {
description = "Path of IAM role"
type = string
default = ""
}
variable "permissions_boundary" {
description = "Permissions boundary ARN to use for IAM role"
type = string
}
variable "oidc_provider_arn" {
type = string
}
variable "cluster_name" {
type = string
}
variable "loki_bucket_arns" {
type = list(string)
description = "buckets for Loki"
}
variable "loki_app_name" {
type = string
default = "loki"
}
variable "loki_service_accounts" {
type = list(string)
default = ["logging:logging-loki"]
}
variable "thanos_bucket_arns" {
type = list(string)
description = "buckets for thanos"
}
variable "thanos_app_name" {
type = string
default = "thanos"
}
variable "thanos_service_accounts" {
type = list(string)
default = [
"monitoring:thanos-storegateway",
"monitoring:prometheus",
"thanos:thanos-storegateway",
]
}
variable "velero_bucket_arns" {
type = list(string)
description = "buckets for velero"
}
variable "velero_service_accounts" {
type = list(string)
default = ["velero:velero-velero-server"]
}
variable "argocd_sops_arn" {
type = string
description = "sops kms key arn for argocd"
}
variable "argocd_app_name" {
type = string
default = "ArgoCD"
}
variable "argocd_service_accounts" {
type = list(string)
default = [
"argocd:argocd-application-controller",
"argocd:argocd-argocd-repo-server",
"argocd:argocd-server"
]
}
variable "fluentbit_bucket_arns" {
type = list(string)
description = "buckets for fluentbit"
}
variable "fluentbit_app_name" {
type = string
default = "Fluentbit"
}
variable "fluentbit_service_accounts" {
type = list(string)
default = ["fluentbit:fluentbit-fluent-bit"]
}
variable "flux_sops_arn" {
type = string
description = "sops kms key arn for flux"
}
variable "flux_app_name" {
type = string
default = "Flux"
}
variable "flux_service_accounts" {
type = list(string)
default = ["flux-system:kustomize-controller"]
}
variable "container-insights_app_name" {
type = string
default = "container-insights"
}
variable "container-insights_service_accounts" {
type = list(string)
default = ["container-insights:aws-cloudwatch-metrics"]
description = "service accounts for container-insights in form of namespace:service-account"
}
variable "gitlab_bucket_arns" {
type = list(string)
description = "buckets for gitlab"
default = []
}
variable "gitlab_app_name" {
type = string
default = "GitLab"
}
variable "gitlab_service_accounts" {
type = list(string)
default = [
"gitlab:gitlab-minio",
"gitlab:gitlab-webservice",
"gitlab:gitlab-toolbox",
"gitlab:gitlab-sidekiq"
]
}
variable "gitlab_runner_bucket_arns" {
type = list(string)
description = "buckets for gitlab_runner"
default = []
}
variable "gitlab_runner_app_name" {
type = string
default = "GitlabRunner"
}
variable "gitlab_runner_service_accounts" {
type = list(string)
default = ["gitlab-runner:gitlab-runner"]
}
variable "grafana_app_name" {
type = string
default = "Grafana"
}
variable "grafana_service_accounts" {
type = list(string)
default = [
"monitoring:monitoring-grafana",
"monitoring:monitoring-monitoring-kube-alertmanager",
"monitoring:monitoring-monitoring-kube-operator",
"monitoring:monitoring-monitoring-kube-state-metrics",
"monitoring:monitoring-monitoring-prometheus-node-exporter"
]
}
variable "create_ub_cosign_iam_role" {
description = "Flag to create Cosign IAM role"
default = false
type = bool
}
variable "vault_sops_arn" {
type = string
description = "sops kms key arn for vault"
}
variable "vault_dynamodb_arn" {
type = string
description = "dynamodb database arn for vault"
}
variable "vault_app_name" {
type = string
default = "vault"
}
variable "vault_service_accounts" {
type = list(string)
default = ["vault:vault-sa"]
}
variable "defectdojo_app_name" {
type = string
default = "defectdojo"
}
variable "defectdojo_service_accounts" {
type = list(string)
default = ["defectdojo:defectdojo"]
}
variable "defectdojo_bucket_arns" {
type = list(string)
description = "buckets for defectdojo"
default = []
}