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

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

variable "service_name" {
  default = "lambda-timed-release"
}

variable "application_family" {
  default = "product-builder"
}

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

variable "orchard_profile_id" {
  default = "179"
}

variable "team_name" {
  default     = "content-creation-management"
  description = "Name of the team"
  type        = string
}

variable "orchard_profile_uuid" {
  default = "99e5c1a9-8d81-487c-8d4f-e99253d5751d"
}

variable "orchard_profile_type" {
  default = "OrchAdminProfile"
}

variable "orchard_identity_id" {
  default = "8955b4aa-2ad0-4b0b-a2ea-6f070554d6d0"
}

variable "notification_endpoints" {
  description = "Endpoints for alerts. Can be email, slack, pagerduty, etc"
  type        = string
  default     = ""
}

variable "escalation_notification_endpoints" {
  description = "Endpoints for escalation alerts. Can be email, slack, pagerduty, etc"
  type        = string
  default     = ""
}
