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 "application_family" {
  default = "cypress"
}

variable "config_s3_bucket_name" {
  description = "S3 bucket where encrypted content is stored"
  default     = "test-automation-cypress-tests"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "user-data.json",
    "cypress.env.json",
  ]
}
