2022-02-15 18:00:24 +00:00
|
|
|
variable "tag" {
|
|
|
|
description = "The tag to deploy. This would be the same as the branch name"
|
|
|
|
}
|
|
|
|
|
2022-12-27 21:48:54 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2022-02-15 18:00:24 +00:00
|
|
|
variable "fleet_config" {
|
|
|
|
description = "The configuration to use for fleet itself, gets translated as environment variables"
|
|
|
|
type = map(string)
|
|
|
|
default = {}
|
|
|
|
}
|
2022-03-21 17:18:21 +00:00
|
|
|
|
2022-04-12 16:49:00 +00:00
|
|
|
variable "loadtest_containers" {
|
|
|
|
description = "The number of containers to loadtest with"
|
|
|
|
type = number
|
|
|
|
default = 0
|
|
|
|
}
|