variable "region" {
  description = "The AWS resources region"
  default     = "us-east-1"
}
variable "environment" {
  description = "Available values: dev, qa, prod."
  default     = "prod"
}
variable "service_name" {
  description = "The name of the associated application."
  default     = "grps-ingester"
}
variable "name" {
  description = "The name of lambda."
  default     = "create-product"
}
variable "application_family" {
  default = "data-platform"
}
variable "team_name" {
  description = "Team name"
  default     = "data-platform"
}

variable "lambda_default_timeout" {
  description = "Default value for timeout"
  default     = "300"
}
variable "datadog_enabled" {
  description = "Whether or not to attach datadog secretsmanager IAM policy"
  default     = true
}
variable "logger_dsn" {
  description = "Fluentd logger DSN"
  default     = "udp://prod-fluentd-applications-udp.theorchard.io:5160"
}
variable "lambda_concurrent_executions" {
  description = "Number of reserved concurrent executions for lambda function"
  default     = 10
}
variable "graphql_gateway_url" {
  description = "GraphQL Gateway URL"
  default     = "https://prod-graphql-router.theorchard.io/graphql"
}
variable "oa_user" {
  description = "OA User identifier"
  default     = "oa:179"
}
variable "rds_rw_user" {
  description = "Ingester user used to read and write to RDS"
  default     = "ddex-ingester-RW"
}
