Set up a storage integration with GCP (Google Cloud Platform)
How to import assets in private buckets on AWS S3 for labeling on Ango Hub
Configure CORS
Set Up Google Cloud Platform
Step 1: Create the Service Account
gcloud iam service-accounts create ${SERVICE_ACCOUNT_NAME} \
--project=${PROJECT_ID} \
--description="Service account to read objects and list project buckets" \
--display-name="Storage Reader and Bucket Lister"Step 2: Grant Permissions to Read Objects in a Specific Bucket
gcloud storage buckets add-iam-policy-binding gs://${BUCKET_NAME} \
--member="serviceAccount:${SERVICE_ACCOUNT_NAME}@${PROJECT_ID}.iam.gserviceaccount.com" \
--role="roles/storage.objectViewer"Step 3: Define and Create a Custom Role to List Buckets (Optional for bucket listing on UI)
Connect your Cloud Storage


Preparing and Uploading the JSON for Import
Last updated