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

variable "environment" {
  type        = string
  description = "The environment"
  default     = "shared"
}

variable "service_name" {
  type        = string
  description = "The name of the service."
  default     = "fluentd-server"
}

variable "application_family" {
  type        = string
  description = "The name of the application family."
  default     = "devops"
}

variable "team_name" {
  type        = string
  description = "The name of the team."
  default     = "devops"
}

variable "route53_zone" {
  type        = string
  description = "The name of the Route 53 zone"
  default     = "shared.theorchard.io"
}

variable "notification_endpoints" {
  type        = string
  description = "Endpoints for Datadog notifications"
  default     = "@slack-devops"
}

# Prefix lists for LB access
variable "prefix_lists_to_allow_ingress_to_lb" {
  type = set(string)
  default = [
    "dev-orcd-private-subnet-prefix-list",
    "prod-orcd-private-subnet-prefix-list",
  ]
}

variable "vpn_prefix_lists_to_allow_ingress_to_lb" {
  type = set(string)
  default = [
    "vpn-ny",
    "vpn-ny-users",
  ]
}
