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

// TODO: Use shared/prod/ecr/kafka-connect/ once all consumers of these kafka-connect repos are updated
// Many of the other kafka-connect repositories were created using the Jenkins job and are not managed by terraform
variable "repository_names" {
  type        = list(string)
  description = "The names of the repositories"
  default     = [
    "kafka-connect-dynamodb-streams"
  ]
}
