variable "environment" {
  type        = string
  description = "The name of the environment"
  default     = "prod"
}

variable "aws_region" {
  type        = string
  description = "The AWS region to deploy resources in"
  default     = "us-west-2"
}

variable "mysql_database" {
  type        = string
  description = "The MySQL database name to connect to"
  default     = "C_CLEOPATRA_RECORDS"
}

variable "cleopatra_enabled_tables" {
  type        = list(string)
  description = "List of enabled tables for the C_CLEOPATRA_RECORDS database"
  default = [
    "affiliate",
    "album",
    "file",
    "product",
    "sale",
    "track",
    "user_input_dist_fee",
  ]
}

variable "rstest_enabled_tables" {
  type        = list(string)
  description = "List of enabled tables for the C_RSTEST database"
  default = [
    "affiliate",
    "album",
    "file",
    "product",
    "sale",
    "track",
    "user_input_dist_fee",
  ]
}
