mirror of
https://github.com/fleetdm/fleet
synced 2026-05-19 15:09:20 +00:00
15 lines
402 B
HCL
15 lines
402 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
|
|
}
|