Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Cloud Storage Budget Limit

Does Google Cloud Storage allow setting a monthly budget limit, similar to the one available for Google App Engine?

like image 698
Cec Avatar asked Sep 16 '25 00:09

Cec


1 Answers

Google Cloud Storage does not implement usage limits on the XML API or for HTTP GETs of public objects.

It is possible to enable access logs: https://developers.google.com/storage/docs/accesslogs This would give you detailed logs of all access to your objects. You could monitor the logs, and if the usage is higher than you want to allow, change the ACL on your objects to disable further access.

like image 133
Brian Dorsey Avatar answered Sep 17 '25 20:09

Brian Dorsey