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

variable "name" {
  type        = string
  description = "Name of the policy and role"
}

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 instance role arns"
  default     = []
}
