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

variable "region" {
  default     = "us-east-1"
  description = "aws resources region"
}

variable "hash_key" {
  description = "Name of the primary key"
  default     = "identity_uuid"
}


variable "lambda_default_timeout" {
  description = "Default value for timeout"
  default     = "300"
}


variable "application_family" {
  type        = string
  description = "Name of application family"
  default     = "kafka-data-highway"
}


variable "lambda_memory_size" {
  description = "Memory size for the lambda function"
  default     = "512"
}


variable "vpc_id" {
  description = "VPC ID where the lambdas will execute"
  type        = string
  default     = "vpc-34dbfd51"
}

variable "vpc_subnet_ids" {
  description = "VPC subnet IDs where the lambdas will execute"
  type        = list(string)
  default     = ["subnet-b649dfef", "subnet-44c19a21"]
}
