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

variable "vpc_id" {
  default = "vpc-7f0e841a"
}

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

variable "lambda_name" {
  default = "lambda-update-subaccount-mapping"
}

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

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

variable "datadog_notification_endpoints" {
  description = "DataDog notification endpoints"
  default     = "@slack-content-delivery-and-asset-mgmt-alerts"
}

variable "neo4j_url" {
  default = "neo4j+s://prod-neo4j-cluster.theorchard.io:7687"
}

variable "database_user_name" {
  default = "lambda-sub-map"
}

variable "database_hostname" {
  default = "ar-db.theorchard.com"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "NEO4J_PASSWORD",
    "DATABASE_PASSWORD"
  ]
}
