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

variable "application_family" {
  type        = string
  description = "The name of the application family."
  default     = "integrations"
}

variable "team_name" {
  type        = string
  description = "The name of the team that owns this infrastructure."
  default     = "integrations"
}

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

variable "service_name" {
  type        = string
  description = "The name of the service."
  default     = "awal-trust-and-safety-reports"
}

variable "snowflake_database" {
  type        = string
  description = "The name of the Snowflake database to create the S3 stage in."
  default     = "AWAL"
}

variable "snowflake_schema" {
  type        = string
  description = "The name of the Snowflake schema to create the S3 stage in."
  default     = "AWAL_TRUST_AND_SAFETY"
}
