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" +}