variable "application_family" {
  default = "sound-recordings"
  type    = string
}

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

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

variable "refresh_table_name" {
  description = "Name of the dynamodb table to delete and restore the backup to"
  default     = "qa-masters_active"
  type        = string
}

variable "service_name" {
  default = "ows-masters-registry"
}

variable "backup_vault_name" {
  default = "prod-dynamodb-backup-vault"
}
