From 96782c6cc44f52e938af68b1a4c0c895b12bcde7 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Tue, 8 Jul 2025 11:43:33 +0200 Subject: [PATCH] feat: add r2 bucket for forgejo Signed-off-by: Lander Van den Bulcke --- buckets.tf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/buckets.tf b/buckets.tf index 610fb8d..e8eda8a 100644 --- a/buckets.tf +++ b/buckets.tf @@ -40,3 +40,11 @@ resource "cloudflare_r2_bucket" "attic" { location = "weur" storage_class = "Standard" } + +# Bucket for forgejo storage +resource "cloudflare_r2_bucket" "forgejo" { + account_id = var.account_id + name = "forgejo" + location = "weur" + storage_class = "Standard" +}