From 66c80d5cf9887f162f5bdc4a0d58a1b9856f1245 Mon Sep 17 00:00:00 2001 From: gurusai-voleti Date: Tue, 24 Feb 2026 08:16:11 +0000 Subject: [PATCH] chore: Migrate gsutil usage to gcloud storage --- firestore/solution-scheduled-backups/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/firestore/solution-scheduled-backups/README.md b/firestore/solution-scheduled-backups/README.md index bcf542af..74b1b786 100644 --- a/firestore/solution-scheduled-backups/README.md +++ b/firestore/solution-scheduled-backups/README.md @@ -26,9 +26,9 @@ Give the service account permission to write to the GCS bucket you are going to use. Here, we will use the default bucket: ```shell -$ gsutil iam ch \ - serviceAccount:YOUR_PROJECT_ID@appspot.gserviceaccount.com:objectCreator \ - gs://YOUR_PROJECT_ID.appspot.com +$ gcloud storage buckets add-iam-policy-binding gs://YOUR_PROJECT_ID.appspot.com \ + --member serviceAccount:YOUR_PROJECT_ID@appspot.gserviceaccount.com \ + --role roles/storage.objectCreator ``` ### 3 - Configure Cron