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

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

variable "application_family" {
  default = "devops"
}

variable "team_name" {
  default = "devops"
}

variable "service_name" {
  description = "Name of service"
  default     = "neo4j-5-cluster"
}

variable "service_name_debian_13" {
  description = "Name of the Debian 13 service"
  default     = "neo4j-cluster-debian-13"
}

variable "route53_zone_id" {
  description = "AWS Route 53 zone id"
  default     = "Z21XEY26C989RH"
}

variable "route53_record_ttl" {
  description = "TTL associated with Route53 records"
  default     = "60"
}

variable "vpc_id" {
  description = "VPC ID"
  default     = "vpc-34dbfd51"
}

variable "neo4j_slack_channel" {
  description = "Slack channel for Neo4j notifications"
  default     = "@slack-neo4j-db"
}

variable "neo4j_user_secrets_manager" {
  description = "Secrets manager secrets for Neo4j initial user credentials"
  type        = list(string)
  default = [
    "NEO4J_USER",
    "NEO4J_PASSWORD",
  ]
}

variable "dns_updater_lambda_name" {
  default = "lambda-neo4j-dns-update"
}

variable "dns_updater_secret_names" {
  default = ["NEO4J_PASSWORD", "NEO4J_USERNAME"]
  type    = set(string)
}

variable "dns_lambda_notification_endpoints" {
  type        = string
  description = "Endpoints for DNS updater Lambda. Can be email, slack, pagerduty, etc"
  default     = "@slack-neo4j-db"
}
