variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "qa"
}

variable "cluster_type" {
  # shortenned from kafka-connect
  default = "kc"
}

variable "connector_type" {
  default = "neo4j-src"
}

variable "changes_connector_name" {
  default = "smelabel"
}

variable "application_family" {
  default = "permissions-platform"
}

variable "team_name" {
  default = "permissions-platform"
}

variable "additional_tags" {
  type = map(string)
  default = {
    project = "kafka-data-highway"
  }
}

locals {
  ecr_repo_name                  = "${var.cluster_type}-${var.connector_type}"
  sme_label_changes_service_name = "${var.cluster_type}-${var.connector_type}-${var.changes_connector_name}"
  downstream_services = [
    "ows-abacus-account",
  ]
}
