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 = "ows-track-integration-test"
}

variable "application_family" {
  default = "product-builder"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "OWS_TRACK_CONTENT_APP_AUTH0_CREDENTIALS",
    "OWS_TRACK_CONTENT_REVIEWER_PP_USER_CREDENTIALS",
    "OWS_TRACK_CONTENT_REVIEWER_PROFILE_USER_CREDENTIALS",
    "OWS_TRACK_CONTENT_REVIEWER_D3_PP_USER_CREDENTIALS",
    "OWS_TRACK_BULK_UPLOAD_PP_USER_CREDENTIALS",
    "OWS_TRACK_WORKSTATION_CATALOG_PP_USER_CREDENTIALS",
    "OWS_TRACK_NO_ACCESS_USER_CREDENTIALS",
  ]
}
