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

variable "service_name" {
  default = "ows-users-integration-test"
}

variable "aws_region" {
  default = "us-east-1"
}

variable "application_family" {
  description = "Application family."
  default     = "user-platform"
}

variable "team_name" {
  description = "The name of the datadog team."
  default     = "accounts-platform"
}

variable "test_machine_name" {
  default = "auth0-action-test-machine"
}

variable "secret_names" {
  type = list(string)
  default = [
    "OWS_USERS_INTEGRATION_TEST_USER_CREDENTIALS",
    "OWS_USERS_INTEGRATION_TEST_SEAT_USER_CREDENTIALS",
    "SETTINGS_AUTH0_APP_CREDENTIALS",
  ]
}
