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     = "qa"
  description = "Available values: dev, qa, prod."
}

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

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

variable "LOGGER_LEVEL" {
  default = "20"
}

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

variable "SPLITIO_ENABLED" {
  default = "true"
}

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