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

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

variable "service_name" {
  default = "testerloop"
}

variable "application_family" {
  default = "cypress"
}

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

variable "config_s3_path" {
  description = "S3 path where encrypted content is stored"
  default     = "testerloop-results/"
}

variable "testerloop_port" {
  default = "8080"
}

variable "testerloop_page_expiration" {
  default = "3600"
}

locals {
  tags = {
    terraformed        = true
    environment        = var.environment
    service_name       = var.service_name
    application_family = var.application_family
  }
}
