variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the fargate environment in"
}

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "prod"
}

variable "service_name" {
  default = "bulkupload"
}

variable "domain_name" {
  type    = string
  default = "theorchard.com"
}

variable "log_level" {
  description = "verbosity of logs in logging service"
  default     = "info"
}

variable "application_family" {
  default = "security-tools"
}

variable "datadog_notification_endpoints" {
  description = "DataDog notification endpoints"
  default     = "@slack-monitoring @slack-distro-prod-alarms"
}

variable "vpc_name" {
  description = "VPC name to deploy resources."
  type        = string
  default     = "prod"
}

variable "service_version" {
  default = "1.0.0"
}

variable "efs_volume_container_path" {
  description = "Path inside container to mount EFS volume"
  default     = "/tmp"
}

variable "team_name" {
  type        = string
  description = "The team responsible for this service"
  default     = "appsec"
}
