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

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

variable "service_name" {
  type        = string
  description = "The name of the service."
  default     = "business-solutions-automations"
}

variable "application_family" {
  type        = string
  description = "The name of the application family."
  default     = "business-solutions-automations"
}

variable "team_name" {
  type        = string
  description = "The name of the application family."
  default     = "business-solutions"
}

variable "lambda_snowflake_query_secrets_names" {
  type        = list(string)
  description = "The list of secrets to be used by the lambda_snowflake_query module."
  default     = ["SNOWFLAKE_QUERY_SNOWFLAKE_PRIVATE_KEY"]
}

variable "stage_snowflake_database" {
  default = "ORCHARD_APP_REPORTING_V2"
}

variable "stage_snowflake_schema" {
  default = "ART_RELATIONS_PROD_ART_RELATIONS"
}
