variable "account" {
  type        = string
  description = "Snowflake account name"
}

variable "region" {
  type        = string
  default     = "us-east-1"
  description = "Snowflake account region"
}

variable "snowflake_user" {
  type        = string
  description = "Snowflake username"
}

variable "snowlake_key_path" {
  type        = string
  description = "Path to ssh key"
}

variable "env" {
  type        = string
  description = "Environment prefix"
}

variable "platform" {
  type        = string
  default     = "delphi"
  description = "Platform name"
}

variable "hightouch_whitelist" {
  type = list(string)
  default = []
  description = "IP adresses whitelisted for the hightouch user."
}
