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

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

variable "bucket_name" {
  description = "S3 bucket name"
  type        = string
  default     = "revenue-file-ingestion"
}

variable "application_family" {
  description = "The name of this group of applications."
  type        = string
  default     = "accounting"
}

variable "service_name" {
  description = "The name of the service."
  type        = string
  default     = "revenue-file-ingestion"
}

variable "snowflake_database" {
  description = "Snowflake database for the stage."
  type        = string
  default     = "REVENUE_FILE_INGESTION"
}

variable "snowflake_schema" {
  description = "Snowflake schema for the stage."
  type        = string
  default     = "QA"
}
