variable "name_prefix" {
  type        = string
  description = "Prefix which will be applied to the names of resources."
}

variable "common_tags" {
  type        = map(any)
  description = "Map of tags to apply."
  default     = {}
}

variable "databricks_account_id" {
  type        = string
  description = "Id of databricks AWS account. https://docs.databricks.com/administration-guide/account-settings/aws-accounts.html"
  default     = "414351767826"
}

variable "databricks_external_id" {
  type        = string
  description = "External ID for integration. Will be provided by databricks during integration setup"
}

variable "instance_roles" {
  type        = list(string)
  description = "List of arns of instance roles that databricks is able to use in addition to standard created one"
  default     = []
}
