fleet/infrastructure/loadtesting/terraform/variables.tf

22 lines
599 B
Terraform
Raw Normal View History

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
}