variable "region" {
  default = "us-east-1"
}

variable "environment" {
  default = "prod"
}

variable "application_family" {
  default = "vector"
}

variable "lambda_name" {
  # with hyphen instead of underscores
  default = "lambda-phy-delivery-order-finalizer"
}

variable "vpc_subnet_ids" {
  type        = list(any)
  description = "VPC subnet IDs where the lambdas will execute"
  default     = ["subnet-067a6b45b079d7296", "subnet-098b89d0c58c5693a"]
}

variable "vpc_id" {
  type        = string
  description = "VPC ID"
  default     = "vpc-7f0e841a"
}


variable "slack_alert_channel" {
  description = "Slack channels for all datadog alerts and build notifications"
  default     = "@slack-knr-alerts @slack-content-delivery-and-asset-mgmt-alerts"
}

variable "graphql_url" {
  default = "https://prod-graphql-router.theorchard.io/graphql"
}
