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

variable "repository_name" {
  type        = string
  description = "The name of the repository"
  default     = "python-opensearch-lib"
}

variable "application_family" {
  description = "Application family of which this is a component. Used for tagging"
  default     = "kafka-data-highway"
}

variable "environment" {
  default = "prod"
}

variable "service_name" {
  default = "python-opensearch-lib"
}

variable "team_name" {
  default = "kdh"
}
