variable "aws_region" {
  type        = string
  default     = "us-east-1"
  description = "The AWS region to create the repository in"
}

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

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

variable "service_name" {
  description = "Custom bucket name"
  default     = "route53-backup"
}

variable "team_name" {
  description = "Name of team that owns this resource"
  default     = "devops"
}
