Reputation: 715
I want to add a pubsub notification for GCp storage buckets. So whenever file drop in GCP storage bucket then pubsub notification will send
Upvotes: 0
Views: 682
Reputation: 715
Can use Gsutil command to create pubsub notification
Select project
gcloud config set project <Project-Name>
Create Notification
gsutil notification create -t <Pubsub topic > -f json gs://<Bucket-name>
More information:
Upvotes: 1