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

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

variable "service_name" {
  default = "cucumber-cypress-tests"
}

variable "function_names" {
  description = "List of fns for automation tests m2m tokens"
  type        = list(string)
  default = [
    "ows-payee",
    "graphql-account"
  ]
}

variable "application_family" {
  default = "cypress"
}

variable "team_name" {
  description = "Datadog team name"
  default     = "qa-automation-team"
}

variable "config_s3_bucket" {
  description = "S3 bucket where encrypted content is stored"
  default     = "qa-orcd-cypress-tests"
}
