variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the environment in"
}

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

variable "application_family" {
  description = "Name of application family"
  default     = "devops"
}

variable "service_name" {
  description = "Custom bucket name"
  default     = "orcd-secrets-manager-secrets"
}

variable "account_id_to_backup" {
  description = "AWS account id to backup"
  default     = ""
}

variable "notification_endpoints" {
  description = "Endpoints for notifications"
  default     = "@slack-backup-alerts"
}
