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

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

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

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

variable "service_name" {
  type        = string
  description = "The service name"
  default     = "k6-hybrid-performance-tests"
}
