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

variable "environment" {
  description = "The environment name"
  type        = string
  default     = "prod"
}

variable "application_family" {
  description = "The application family to which the repository belongs"
  type        = string
  default     = "frontend"
}

variable "team_name" {
  description = "The team name to which the repository belongs"
  type        = string
  default     = "devops"
}

variable "repository_name" {
  type        = string
  description = "The name of the repository"
  default     = "frontend-rollback"
}
