2025-11-10 21:16:20 +00:00
|
|
|
variable "git_tag_branch" {
|
|
|
|
|
description = "The tag or git branch to use to build loadtest containers."
|
2025-10-08 19:31:37 +00:00
|
|
|
type = string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "loadtest_containers" {
|
|
|
|
|
description = "Number of loadtest containers to deploy"
|
|
|
|
|
type = number
|
|
|
|
|
default = 1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "extra_flags" {
|
|
|
|
|
description = "Comma delimited list (string) for passing extra flags to osquery-perf containers"
|
|
|
|
|
type = list(string)
|
|
|
|
|
default = ["--orbit_prob", "0.0"]
|
2025-10-29 12:33:46 +00:00
|
|
|
}
|
2025-11-14 20:35:42 +00:00
|
|
|
|
|
|
|
|
variable "task_size" {
|
|
|
|
|
type = object({
|
|
|
|
|
cpu = optional(number, 256)
|
|
|
|
|
memory = optional(number, 1024)
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
default = {
|
|
|
|
|
cpu = 256
|
|
|
|
|
memory = 1024
|
|
|
|
|
}
|
|
|
|
|
}
|