variable "region" {
  default     = "us-east-1"
  description = "All elements of the state machine execution flow have to be placed in the same region."
}

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

variable "service_name" {
  default = "ows-features"
}

variable "application_family" {
  default = "permissions-platform"
}

variable "team_name" {
  type    = string
  default = "permissions-platform"
}

variable "SENTRY_DSN" {
  default = ""
}

variable "LOGGER_DSN" {
  default = ""
}

variable "LOGGER_LEVEL" {}

variable "REDIS_URL" {
  default = ""
}

variable "REDIS_CACHE_TTL" {
  description = "TTL in seconds"
}

variable "DATADOG_ENV" {
  default = "prod-ows-features"
}

variable "SPLITIO_ENABLED" {
  default = ""
}

variable "dependent_applications" {
  default = ["all-orchard-suite"]
}

