Rename Pulumi resource names to match actual R2 bucket names

This commit is contained in:
Deeman
2025-10-12 22:31:59 +02:00
parent f207fb441d
commit da17a29987

View File

@@ -18,9 +18,9 @@ hetzner_location = config.get("hetzner_location") or "nbg1" # Nuremberg datacen
# R2 bucket for artifacts (CLI + extract/transform packages) # R2 bucket for artifacts (CLI + extract/transform packages)
# Note: Import existing bucket with: # Note: Import existing bucket with:
# pulumi import cloudflare:index/r2Bucket:R2Bucket materia-artifacts <account_id>/beanflows-artifacts # pulumi import cloudflare:index/r2Bucket:R2Bucket beanflows-artifacts <account_id>/beanflows-artifacts
artifacts_bucket = cloudflare.R2Bucket( artifacts_bucket = cloudflare.R2Bucket(
"materia-artifacts", "beanflows-artifacts",
account_id=cloudflare_account_id, account_id=cloudflare_account_id,
name="beanflows-artifacts", name="beanflows-artifacts",
location="weur", # Western Europe location="weur", # Western Europe
@@ -28,9 +28,9 @@ artifacts_bucket = cloudflare.R2Bucket(
# R2 bucket for lakehouse (Iceberg tables) # R2 bucket for lakehouse (Iceberg tables)
# Note: Import existing bucket with: # Note: Import existing bucket with:
# pulumi import cloudflare:index/r2Bucket:R2Bucket materia-lakehouse <account_id>/beanflows-data-prod # pulumi import cloudflare:index/r2Bucket:R2Bucket beanflows-data-prod <account_id>/beanflows-data-prod
lakehouse_bucket = cloudflare.R2Bucket( lakehouse_bucket = cloudflare.R2Bucket(
"materia-lakehouse", "beanflows-data-prod",
account_id=cloudflare_account_id, account_id=cloudflare_account_id,
name="beanflows-data-prod", name="beanflows-data-prod",
location="weur", location="weur",