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

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

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

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

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

variable "backup_copy_vault_arn" {
  default = "arn:aws:backup:us-east-1:079637511089:backup-vault:backup-efs-backup-vault"
  type    = string
}

variable "account_name" {
  description = "The name of the AWS account"
  default     = "pp"
}
