variable "database_map" {
  type = list(object({
    task_name    = string
    repo_url     = string
    owner_secret = string
  }))
  description = "Key is task name and value is ecr repo url"
}
variable "env_prefix" {
  type = string
}
variable "project_group" {
  type = string
}
variable "ecr_tag" {
  type = string
}
variable "role_arn" {
  type = string
}
variable "common_tags" {
  type = map(string)
}
variable "aggregated_tag" {
  type = string
}
