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     = "devops"
}

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

variable "ecr_repo_names" {
  description = "List of repository names"
  type        = list(string)
  default     = [
    "lambda-offboarding-automation-auth0-cli",
    "lambda-offboarding-automation-github-cli",
    "lambda-offboarding-automation-jira-cli",
    "lambda-offboarding-automation-db-cli",
    "lambda-offboarding-automation-dynamo-cli",
  ]
}
