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

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

variable "application_family" {
  default = "devops"
  type    = string
}

variable "backup_vault_name" {
  default = "efs-backup-vault"
}
