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

variable "backup_account_id" {
  type        = string
  default     = "079637511089"
  description = "Id of the Backup AWS account with the destination ECR repos"
}

variable "sidecar_repository_prefixes" {
  type        = list(string)
  default     = ["orchard-datadog-agent", "orchard-fluent-bit", "lambda-datadog-forwarder"]
  description = "List of prefixes for sidecar repositories to replicate"
}

variable "sidecar_replication_regions" {
  type        = list(string)
  default     = ["us-east-2", "us-west-1", "us-west-2", "eu-central-1"]
  description = "List of regions to replicate sidecar repositories to"
}
