Like Prometheus, but for logs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
loki/production/terraform/modules/s3/variables.tf

26 lines
509 B

variable "region" {
description = "AWS region"
type = string
default = "us-east-2"
}
variable "bucket_name" {
description = "Bucket name for Loki storage"
type = string
}
variable "cluster_name" {
description = "Name of EKS cluster"
type = string
}
variable "namespace" {
description = "Namespace of Loki installation"
type = string
}
variable "serviceaccount" {
description = "Service account of Loki installation"
type = string
default = "loki"
}