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-a360-profile-creator"
}

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

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

variable "neo4j_url" {
  description = "URL of the Neo4j database"
  default     = "neo4j+s://prod-neo4j-cluster.theorchard.io:7687"
}

variable secrets_manager_secret_names {
  description = "List of secrets manager secrets to create"
  default = [
    "NEO4J_USERNAME",
    "NEO4J_PASSWORD",
  ]
}

variable "bucket_name" {
  description = "Name of the S3 bucket we are reusing for creating a360 profiles"
  default     = "altafonte-user-ingestion"
}
