Compare commits

..

1 Commits

Author SHA1 Message Date
adcc811077 Update loki and grafana 2021-01-29 21:54:47 +00:00
2 changed files with 13 additions and 12 deletions

File diff suppressed because one or more lines are too long

View File

@ -24,3 +24,12 @@ resource "scaleway_object_bucket" "outline" {
output "outline-bucket_id" { output "outline-bucket_id" {
value = scaleway_object_bucket.outline.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
}