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     = "eu-central-1"
}

variable "enabled_schemas" {
  type        = list(string)
  description = "List of schemas to enable in Fivetran"
  default     = [
    "CSR",
    "DRA",
    "DRA_PROC",
    "EAI_CLIENT",
    "EOM",
    "EOM_CAT",
    "EOM_CAT10",
    "EOM_CAT4",
    "EOM_CAT8",
    "EOM_CAT9",
    "EOM_PROC",
    "META_ARTIST",
    "META_MEAD",
    "MI_LOAD",
    "MI2",
    "MI2_CARMA",
    "MI2_PROC",
    "OH_DEL",
    "OMS_ASSET",
    "OMS_PUB",
    "OMS_SUB",
    "SBME",
  ]
}
