variable "name_prefix" {
  type        = string
  description = "The name prefix, lowercase"
}

variable "project" {
  type        = string
  description = "Project name, lowercase"
}

variable "region" {
  type        = string
  description = "The region ID"
}

variable "common_tags" {
  type        = map(string)
  description = "Common tags to add for the objects"
  default     = {}
}

variable "bucket_arn" {
  type        = string
  description = "The ARN of the S3 bucket"
}

variable "s3_prefix" {
  type        = string
  description = "The 'YYYY/MM/DD/HH' time format prefix is automatically used for delivered S3 files. You can specify an extra prefix to be added in front of the time format prefix."
}
