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 "direct_delivery_bucket_name_prefix" {
  default = "supply-chain-encoding-direct-delivery"
}

variable "s3_store_delivery_bucket_name" {
  default = "supply-chain-s3-store-delivery"
}

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