mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
- 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
28 lines
637 B
HCL
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
|
|
}
|
|
}
|