-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathvariables.tf
326 lines (271 loc) · 9.5 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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
variable "aws_region" {
description = "AWS region."
type = string
}
variable "aws_region_instances" {
description = "AWS region to run EC2 runners."
default = []
type = list(string)
}
variable "vpc_ids" {
description = "The list of vpc_id for aws_region. keys; 'vpc' 'region'"
type = list(map(string))
}
variable "vpc_sgs" {
description = "The list of security group ids for vpc ids. keys: 'vpc', 'sg'"
type = list(map(string))
}
variable "subnet_vpc_ids" {
description = "The relation between subnet and vpcs. keys; 'vpc' 'subnet'"
type = list(map(string))
default = []
}
variable "subnet_azs" {
description = "The relation between subnet and azs. keys; 'subnet' 'az'"
type = list(map(string))
default = []
}
variable "tags" {
description = "Map of tags that will be added to created resources. By default resources will be tagged with name and environment."
type = map(string)
default = {}
}
variable "runner_extra_labels" {
description = "Extra labels for the runners (GitHub). Separate each label by a comma"
type = string
default = ""
}
variable "environment" {
description = "A name that identifies the environment, used as prefix and for tagging."
type = string
}
variable "sqs_build_queue" {
description = "SQS queue to consume accepted build events."
type = object({
arn = string
url = string
})
}
variable "redis_endpoint" {
description = "Redis endpoint"
type = string
}
variable "redis_login" {
description = "Redis password"
type = string
}
variable "sqs_build_queue_retry" {
description = "SQS queue to forward messages to retry requests"
type = object({
arn = string
url = string
})
}
variable "enable_organization_runners" {
type = bool
}
variable "github_app" {
description = "GitHub app parameters, see your github app. Ensure the key is the base64-encoded `.pem` file (the output of `base64 app.private-key.pem`, not the content of `private-key.pem`)."
type = object({
key_base64 = string
id = string
client_id = string
client_secret = string
})
}
variable "scale_down_schedule_expression" {
description = "Scheduler expression to check every x for scale down."
type = string
default = "cron(*/5 * * * ? *)"
}
variable "scale_up_chron_schedule_expression" {
description = "Scheduler expression to check every x for scale down."
type = string
default = "cron(*/30 * * * ? *)" # every 30 minutes
}
variable "minimum_running_time_in_minutes" {
description = "The time an ec2 action runner should be running at minimum before terminated if non busy."
type = number
default = 5
}
variable "lambda_timeout_scale_down" {
description = "Time out for the scale down lambda in seconds."
type = number
default = 60
}
variable "lambda_timeout_scale_up" {
description = "Time out for the scale up lambda in seconds."
type = number
default = 60
}
variable "lambda_timeout_scale_up_chron" {
description = "Time out for the scale up chron lambda in seconds."
type = number
default = 900
}
variable "role_permissions_boundary" {
description = "Permissions boundary that will be added to the created role for the lambda."
type = string
default = null
}
variable "encryption" {
description = "KMS key to encrypted lambda environment secrets. Either provide a key and `encrypt` set to `true`. Or set the key to `null` and encrypt to `false`."
type = object({
kms_key_id = string
encrypt = bool
})
}
variable "idle_config" {
description = "List of time period that can be defined as cron expression to keep a minimum amount of runners active instead of scaling down to 0. By defining this list you can ensure that in time periods that match the cron expression within 5 seconds a runner is kept idle."
type = list(object({
cron = string
timeZone = string
idleCount = number
}))
default = []
}
variable "logging_retention_in_days" {
description = "Specifies the number of days you want to retain log events for the lambda log group. Possible values are: 0, 1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1827, and 3653."
type = number
default = 180
}
variable "lambda_s3_bucket" {
description = "S3 bucket from which to specify lambda functions. This is an alternative to providing local files directly."
type = string
default = null
}
variable "runners_lambda_s3_key" {
description = "S3 key for runners lambda function. Required if using S3 bucket to specify lambdas."
type = string
default = null
}
variable "runners_lambda_s3_object_version" {
description = "S3 object version for runners lambda function. Useful if S3 versioning is enabled on source bucket."
type = string
default = null
}
variable "create_service_linked_role_spot" {
description = "(optional) create the serviced linked role for spot instances that is required by the scale-up lambda."
type = bool
default = false
}
variable "ghes_url" {
description = "GitHub Enterprise Server URL. DO NOT SET IF USING PUBLIC GITHUB"
type = string
default = null
}
variable "lambda_subnet_ids" {
description = "List of subnets in which the lambda will be launched, the subnets needs to be subnets in the `vpc_ids`."
type = list(string)
default = []
}
variable "lambda_security_group_ids" {
description = "List of subnets in which the lambda will be launched, the subnets needs to be subnets in the `vpc_ids`."
type = list(string)
default = []
}
variable "runners_security_group_ids" {
description = "Security groups"
type = list(string)
default = []
}
variable "secretsmanager_secrets_id" {
description = "(optional) ID for secretsmanager secret to use for Github App credentials"
type = string
default = null
}
variable "scale_up_lambda_concurrency" {
description = "Number of concurrent instances to run for the scale up lambda"
type = number
default = 10
}
variable "scale_up_provisioned_concurrent_executions" {
description = "Number of provisioned concurrent instances to run for the scale up lambda"
type = number
default = 0
}
variable "must_have_issues_labels" {
description = "Open issues tagged with labels that must be present so scaleUp will run"
type = list(string)
default = []
}
variable "cant_have_issues_labels" {
description = "Open issues tagged with labels that should not be present so scaleUp will run"
type = list(string)
default = []
}
variable "lambda_zip" {
description = "File location of the lambda zip file."
type = string
}
variable "role_path" {
description = "The path that will be added to the role, if not set the environment name will be used."
type = string
}
variable "github_app_client_secret" {
description = "GitHub app client secret. Required if using secretsmanager_secrets_id."
type = string
}
variable "github_app_key_base64" {
description = "GitHub app client secret. Required if using secretsmanager_secrets_id."
type = string
}
variable "launch_template_name_linux" {
description = "Name of the launch template to use for linux runners. If not set a launch template will be created."
type = string
}
variable "launch_template_name_linux_nvidia" {
description = "Name of the launch template to use for linux nvidia runners. If not set a launch template will be created."
type = string
}
variable "launch_template_name_linux_arm64" {
description = "Name of the launch template to use for linux arm64 runners. If not set a launch template will be created."
type = string
}
variable "launch_template_name_windows" {
description = "Name of the launch template to use for windows runners. If not set a launch template will be created."
type = string
}
variable "launch_template_version_linux" {
description = "Version of the launch template to use for linux runners. If not set the latest version will be used."
type = string
}
variable "launch_template_version_linux_nvidia" {
description = "Version of the launch template to use for linux nvidia runners. If not set the latest version will be used."
type = string
}
variable "launch_template_version_linux_arm64" {
description = "Version of the launch template to use for linux arm64 runners. If not set the latest version will be used."
type = string
}
variable "launch_template_version_windows" {
description = "Version of the launch template to use for windows runners. If not set the latest version will be used."
type = string
}
variable "role_runner_arn" {
description = "Role to use for the runner. If not set a role will be created."
type = string
}
variable "scale_config_org" {
description = "Organization to fetch scale config from."
type = string
}
variable "scale_config_repo" {
description = "Repository to fetch scale config from."
default = ""
type = string
}
variable "scale_config_repo_path" {
description = "Path in the repository to fetch scale config from."
default = ""
type = string
}
variable "min_available_runners" {
description = "Minimum number of runners to keep available."
type = number
}
variable "retry_scale_up_cron_hud_query_url" {
description = "URL used in scale-up-chron to query HUD for queued jobs"
type = string
default = ""
}