forked from philips-labs/terraform-aws-github-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.deprecated.tf
30 lines (26 loc) · 921 Bytes
/
variables.deprecated.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
# tflint-ignore: terraform_unused_declarations
variable "lambda_tracing_mode" {
description = "DEPRECATED: Replaced by `tracing_config`."
type = string
default = null
validation {
condition = anytrue([var.lambda_tracing_mode == null])
error_message = "DEPRECATED, Replaced by `tracing_config`."
}
}
# tflint-ignore: terraform_unused_declarations
variable "enable_event_rule_binaries_syncer" {
description = "DEPRECATED: Replaced by `state_event_rule_binaries_syncer`."
type = bool
default = null
validation {
condition = var.enable_event_rule_binaries_syncer == null
error_message = "DEPRECATED, Replaced by `state_event_rule_binaries_syncer`."
}
}
# tflint-ignore: terraform_naming_convention
variable "runners_scale_up_Lambda_memory_size" {
description = "Memory size limit in MB for scale-up lambda."
type = number
default = null
}