fleet/infrastructure/loadtesting/terraform/variables.tf
Robert Fairburn b19233e21d
Loadtesting db size (#9152)
* Allow for customizable DB instance type loadtesting
2023-01-02 14:33:30 -06:00

28 lines
776 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"
}