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

variable "environment" {
  type        = string
  description = "The environment"
  default     = "dev"
}

variable "application_family" {
  type        = string
  description = "The name of the application family."
  default     = "kafka-data-highway"
}

variable "team_name" {
  default = "kdh"
}

variable "s3_bucket_name" {
  default = "dev-asset-storage"
}

variable "stage_snowflake_database" {
  default = "FANSIFTER_APP_REPORTING"
}

variable "stage_snowflake_schema" {
  default = "QA_CRM_FANS"
}
