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

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

variable "service_name" {
  description = "The service name"
  default     = "vector"
}

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

variable "additional_tags" {
  type = map(string)
  default = {
    "map-migrated" = "d-server-037ku7rhxwbcc1"
  }
}

variable "physical_location_id" {
  type        = string
  description = "The physical location ID"
  default     = "13"
}

variable "asset_types" {
  type        = set(string)
  description = "The asset types to create buckets for"
  default = [
    "direct-delivery",
  ]
}
