mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
two things here: 1. create addon for use in new modular terraform 2. create vuln processing terraform for legacy terraform, but by default its disabled
33 lines
No EOL
971 B
HCL
33 lines
No EOL
971 B
HCL
variable "tag" {
|
|
description = "The tag to deploy. This would be the same as the branch name"
|
|
}
|
|
|
|
variable "git_branch" {
|
|
description = "The git branch to use to build loadtest containers. Only needed if docker tag doesn't match the git branch"
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "fleet_config" {
|
|
description = "The configuration to use for fleet itself, gets translated as environment variables"
|
|
type = map(string)
|
|
default = {}
|
|
}
|
|
|
|
variable "loadtest_containers" {
|
|
description = "The number of containers to loadtest with"
|
|
type = number
|
|
default = 0
|
|
}
|
|
|
|
variable "db_instance_type" {
|
|
description = "The type of the loadtesting db instances. Default is db.r6g.4xlarge."
|
|
type = string
|
|
default = "db.r6g.4xlarge"
|
|
}
|
|
|
|
variable "redis_instance_type" {
|
|
description = "the redis instance type to use in loadtesting. default is cache.m6g.large"
|
|
type = string
|
|
default = "cache.m6g.large"
|
|
} |