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

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

variable "service_name" {
  default = "playwright-reporting"
}

variable "application_family" {
  default = "automation-testing"
}

variable "config_s3_bucket" {
  description = "S3 bucket where encrypted content is stored"
  default     = "qa-playwright-test-results"
}

variable "config_prod_s3_bucket" {
  description = "S3 bucket where encrypted content is stored"
  default     = "prod-playwright-test-results"
}

variable "playwright_reporting_port" {
  default = "8080"
}

variable "playwright_reporting_page_expiration" {
  default = "3600"
}

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