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

variable "bucket_name" {
  type        = string
  description = "Bucket name"
}

variable "versioning" {
  type        = bool
  default     = false
  description = "Whether bucket versioning is enabled"
}

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

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