mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 17:28:54 +00:00
16 lines
413 B
HCL
16 lines
413 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 "loadtest_containers" {
|
|
description = "The number of containers to loadtest with"
|
|
type = number
|
|
default = 0
|
|
}
|