fleet/terraform/addons/migrations/variables.tf
Benjamin Edwards f57a6bafad
migrator addon vuln service compatibility (#17430)
initial pass after pairing session -- not yet tested but wanted to get
early feedback
2024-03-11 13:19:05 -04:00

44 lines
612 B
HCL

variable "ecs_cluster" {
type = string
nullable = false
}
variable "ecs_service" {
type = string
nullable = false
}
variable "min_capacity" {
type = number
nullable = false
}
variable "desired_count" {
type = number
nullable = false
}
variable "task_definition" {
type = string
nullable = false
}
variable "task_definition_revision" {
type = number
nullable = false
}
variable "subnets" {
type = list(string)
nullable = false
}
variable "security_groups" {
type = list(string)
nullable = false
}
variable "vuln_service" {
default = ""
}