variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the environment in"
}

variable "environment" {
  default     = "qa"
}

variable "service_name" {
  default = "ows-royalties-test"
}

variable "application_family" {
  default     = "accounting"
  description = "Application family to which abacus belongs"
}

variable "team_name" {
  description = "Datadog team name"
  default     = "abacus"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "AUTH0_ABACUS_READONLY_USER_PASSWORD",
    "AUTH0_ABACUS_APP_CLIENT_ID",
    "AUTH0_ABACUS_APP_CLIENT_SECRET"
  ]
}
