variable "service_tags" {
  description = "Resource tags"
  type        = map(string)

  default = {}
}

variable "name" {
  description = "Name of the service"
  type        = string
}

variable "associate_with_lb" {
  description = "Associate with ALB"
  type        = bool
  default     = false
}

variable "scope" {
  description = "Scope for CDN"
  type        = string
  default     = "REGIONAL"
}

variable "access_logs_bucket" {
  type        = string
  description = "Access logs bucket"
  default     = ""
}
