From 299f5ab9c38834fc58b2f2a434c1495ac3d1c554 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Fri, 27 Dec 2024 22:22:35 +0100 Subject: Add scripts --- scripts/01-create-bucket.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 scripts/01-create-bucket.sh (limited to 'scripts/01-create-bucket.sh') diff --git a/scripts/01-create-bucket.sh b/scripts/01-create-bucket.sh new file mode 100755 index 0000000..fb853c9 --- /dev/null +++ b/scripts/01-create-bucket.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +read -p "Enter 'order_products.csv' path: " path + +gcloud storage buckets create gs://$BUCKET_NAME --location=eu +gcloud storage buckets add-iam-policy-binding gs://${BUCKET_NAME} \ + --member="serviceAccount:${SERVICE_ACCOUNT}@${PROJECT}.iam.gserviceaccount.com" \ + --role="roles/storage.objectCreator" +gcloud storage cp $path gs://$BUCKET_NAME/input/ -- cgit v1.2.3-18-g5258