fleet/infrastructure/loadtesting/terraform/osquery_perf/variables.tf
Jorge Falcon 34cb7ab6d1
Loadtest internal alb logging and osquery-perf scaling updates (#42581)
- Configures internal alb to log to the same bucket as the public alb
- Adds support for osquery-perf task size (cpu/memory) configuration
- Updates defaults for osquery-perf extra_flags
- Updates default enroll.sh loop sleep_time from 60s -> 300s
2026-03-31 11:15:07 -04:00

28 lines
637 B
HCL

variable "git_tag_branch" {
description = "The tag or git branch to use to build loadtest containers."
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"]
}
variable "task_size" {
type = object({
cpu = optional(number, 4096)
memory = optional(number, 8192)
})
default = {
cpu = 4096
memory = 8192
}
}