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

variable "environment" {
  type        = string
  description = "The environment"
  default     = "prod"
}

variable "application_family" {
  type        = string
  description = "The application family"
  default     = "automation-testing"
}

variable "team_name" {
  type        = string
  description = "The team name"
  default     = "qa-automation-team"
}

variable "service_name" {
  type        = string
  description = "The service name"
  default     = "playwright-tests"
}

variable "bucket_name" {
  type        = string
  description = "The S3 bucket name for storing test results"
  default     = "playwright-test-results"
}

variable "lambda_function_concurrent_executions" {
  type        = number
  description = "The number of concurrent executions for the Lambda function"
  default     = 80
}
