variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "qa"
}

variable "application_family" {
  description = "Application family of which this is a component. Used for tagging"
  default     = "vector"
}

variable "team_name" {
  type        = string
  description = "Name of team that owns the service"
  default     = "content-delivery-asset-management"
}

variable "service_name" {
  default = "vector-buckets"
}

variable "direct_delivery_bucket_name_prefix" {
  default = "encoding-direct-delivery"
}
variable "s3_store_delivery_bucket_name" {
  default = "s3-store-delivery"
}

variable "physical_location_ids" {
  type        = set(string)
  description = "List of physical location IDs to use when creating resources"
  default = [
    "9",
  ]
}
