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 = "auth0-secrets"
}

variable "application_family" {
  default = "automation-testing"
}

variable "auth0_secrets" {
  description = "List of secrets to create to store application user credentials"
  type        = list(string)
  default = [
    "abacus",
    "account360",
    "audience",
    "apollo",
    "collaborators",
    "content",
    "deezer",
    "distribution",
    "documents",
    "fansifter",
    "helpcenter",
    "insights",
    "moneyhub",
    "neighbouring-rights",
    "oa",
    "pdp",
    "podcast",
    "publishing",
    "settings",
    "solfege",
    "songwhip",
    "songwhip-admin",
    "workstation",
    "coda",
    "seat",
    ]
}
