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

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

variable service_name {
  default = "lambda-identity-verification"
}

variable "vpc_id" {
  description = "VPC where the lambdas will execute"
  default     = "vpc-7f0e841a"
}

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

variable trigger_msk_cluster_name {
  description = "MSK cluster name to read from."
  default     = "managed-kafka-artist-diy"
}

variable trigger_msk_topic {
  description = "MSK topic used to trigger the lambda."
  default     = "event.gdaAccountCreation.success"
}

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

variable datadog_enabled {
  description = "Enabled DataDog monitoring."
  default     = true
}

variable datadog_advanced_enabled {
  description = "Enabled advanced DataDog monitoring."
  default     = true
}

variable "datadog_notification_endpoints" {
  description = "DataDog notification endpoints"
  default     = "@notifications"
}
