tf-infra/buckets.tf
Lander Van den Bulcke bea643f627
feat: create attic bucket
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-01-10 17:28:30 +01:00

7 lines
191 B
HCL

# Bucket for storage of nix cache
resource "cloudflare_r2_bucket" "attic" {
account_id = var.account_id
name = "attic"
location = "weur"
storage_class = "Standard"
}