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

variable "environment" {
  type        = string
  description = "Deployment environment"
  default     = "prod"
}

variable "application_family" {
  type        = string
  description = "Application family"
  default     = "data-platform"
}

variable "service_name" {
  type        = string
  description = "Service name"
  default     = "lambda-spotify-daily-chart-freshness"
}

variable "team_name" {
  type        = string
  description = "Team name"
  default     = "data-platform"
}

variable "lambda_function_names" {
  type        = list(string)
  description = "List of ECR repository names to create"
  default = [
    "lambda-spotify-daily-chart-freshness",
  ]
}
