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