variable "account" {
  type        = string
  description = "snowflake account id"
  default     = "delphi"
}

variable "blocked_roles" {
  type        = list(string)
  description = "List of role name patterns to block from using this OAuth integration"
  default = [
    "ACCOUNTADMIN",
    "ORGADMIN",
    "SECURITYADMIN",
    "SYSADMIN",
    "USERADMIN",
  ]
}
