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

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

variable "service_name" {
  default = "flink-message-transformation"
}

variable "hash_key" {
  description = "Unique identifier for the service, used in resource names."
  default     = "id"
}

variable "range_key" {
  description = "Range key for the DynamoDB table."
  default     = "date"
}

variable "msk_cluster_name" {
  description = "Name of the MSK cluster to connect to."
  default     = "managed-kafka-cdc-destination"
}

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