variable name_prefix {
  description = "Prefix of the names of created resources"
  type        = string
}

variable tags {
  description = "Tags assigned to created dynamodb tables"
  type        = map(string)
}

variable backups_enabled {
  description = "Whether to enable point-in-time recovery - note that it can take up to 10 minutes to enable for new tables."
  type        = bool
  default     = false
}
