variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

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

variable "service_name" {
  default = "ows-legacy-images"
}

variable "efs_volume_container_path" {
  description = "Path at which EFS volume will be mounted in container"
  default     = "/var/tmp"
}

variable "application_family" {
  default = "php-monolith"
}

variable "notification_endpoints" {
  default = "@slack-content-delivery-and-asset-mgmt-qa-alerts"
}

variable "escalation_notification_endpoints" {
  default = "@slack-content-delivery-and-asset-mgmt-qa-alerts"
}

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