fleet/infrastructure/loadtesting/terraform/variables.tf
Zachary Winnerman 2fbe53b6c9
Reorg infrastructure and add changes for frontend's loadtesting environment (#4947)
* Reorganized infrastructure, updated for frontend's loadtesting

* Add changes suggested by @chiiph

* Moved files per suggestion by Ben

* Update docs with new links

* Add config for multi account assume role
2022-04-12 12:49:00 -04:00

21 lines
539 B
HCL

variable "tag" {
description = "The tag to deploy. This would be the same as the branch name"
}
variable "fleet_config" {
description = "The configuration to use for fleet itself, gets translated as environment variables"
type = map(string)
default = {}
}
variable "scale_down" {
description = "Whether to scale down the environment"
type = bool
default = false
}
variable "loadtest_containers" {
description = "The number of containers to loadtest with"
type = number
default = 0
}