From bba30d2ee5881c34a9fb304a6e28b024826435ea Mon Sep 17 00:00:00 2001 From: ludeeus Date: Thu, 5 Oct 2023 13:17:55 +0000 Subject: [PATCH] Add os-build-cache bucket --- os-builds/bucket.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/os-builds/bucket.tf b/os-builds/bucket.tf index 89aeeee..f63213e 100644 --- a/os-builds/bucket.tf +++ b/os-builds/bucket.tf @@ -2,4 +2,10 @@ resource "cloudflare_r2_bucket" "os_build_artifacts" { account_id = var.CLOUDFLARE_ACCOUNT_ID name = "os-build-artifacts" location = "ENAM" +} + +resource "cloudflare_r2_bucket" "os_build_cache" { + account_id = var.CLOUDFLARE_ACCOUNT_ID + name = "os-build-cache" + location = "ENAM" } \ No newline at end of file