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

variable table_name {
    description = "Table name for dynamodb"
}

variable use_custom_table_name {
  description = "Whether to use a custom table name; if so specify a name in var.custom_table_name"
  default     = true
}

variable custom_table_name {
  description = "User-provided table name if var.use_custom_table_name is set to true"
  default     = "dev-vector-orders"
}

variable read_capacity {
  description = "The number of read units for this table."
  default     = "1"
}

variable write_capacity {
  description = "The number of write units for this table."
  default     = "1"
}

variable max_read_capacity {
  description = ""
  default     = "5"
}

variable min_read_capacity {
  description = ""
  default     = "1"
}

variable max_write_capacity {
  description = ""
  default     = "5"
}

variable min_write_capacity {
  description = ""
  default     = "1"
}
