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-test-results"
}

variable "application_family" {
  default = "cypress"
}

variable "team_name" {
  default = "qa-automation-team"
}

variable "lambda_invoke_list" {
  description = "List of Lambda functions cucumber-tests user will be able to invoke."
  default = [
    "qa-lambda-gda-sforce-kafka-sync",
    "qa-lambda-gda-sks-unqualified-leads",
    "qa-lambda-gda-sks-leads",
  ]
}
