variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "qa"
}

variable "application_family" {
  default = "kafka-data-highway"
}

variable "db_password_secret_name" {
  default = "ROYALTY_ACCOUNTING_DB_PASSWORD"
}

variable "debezium_source_service_name" {
  default = "kafka-connect-debezium-ra"
}


variable "connector_name" {
  default = "debezium_mysql_source"
}

variable "connector_type" {
  default = "debezium_source"
}

variable "db_host" {
  default = "qa-royalty-accounting-db.theorchard.io"
}

variable "db_server_name" {
  default = "qa_royalty_accounting"
}

variable "db_name" {
  default = "royalty_accounting"
}

variable "msk_cluster_name" {
  description = "MSK Cluster name, without environment prefix"
  default     = "managed-kafka-cdc-destination"
}

variable "additional_tags" {
  type = map(string)
  default = {
    project = "kafka-data-highway"
  }
}
