variable "aws_region" {
  description = "The AWS region to deploy into"
  type        = string
  default     = "us-east-1"
}

variable "environment" {
  description = "Deployment environment"
  type        = string
  default     = "qa"
}

variable "service_name" {
  description = "Service name used in resource naming"
  type        = string
  default     = "ows-ai-eval-runner"
}

variable "application_family" {
  description = "The application family to which the service belongs"
  type        = string
  default     = "automation_testing"
}

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