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

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

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

variable "application_family" {
  description = "Application family."
  default     = "product-builder"
}

variable "team_name" {
  description = "Datadog Team Name"
  default     = "content-creation-management"
}

variable "secret_names" {
  type = list(string)
  default = [
    "OWS_CONTRIBUTOR_INTEGRATION_TEST_USER_CREDENTIALS",
    "OWS_CONTRIBUTOR_INTEGRATION_TEST_APP_AUTH0_CREDENTIALS",
  ]
}
