Switch Loki to storing in bucket

This commit is contained in:
2020-09-18 20:12:11 +01:00
parent 3ab7377253
commit 295bb89828
2 changed files with 39 additions and 8 deletions

View File

@@ -24,3 +24,12 @@ resource "scaleway_object_bucket" "outline" {
output "outline-bucket_id" {
value = scaleway_object_bucket.outline.id
}
resource "scaleway_object_bucket" "logs" {
name = "cluster.fun-logs"
acl = "private"
}
output "logs-bucket_id" {
value = scaleway_object_bucket.logs.id
}