Access Google Storage based on IP address

Is there a way to grant access to a Google Cloud Storage substance based on the IP address it comes from.

On Amazon s3, you can simply set this in the access policy as follows:

"Condition" : { "IpAddress" : { "aws:SourceIp" : ["192.168.176.0/24","192.168.143.0/24"] } } 

I do not want to use a signed URL.

+5
source share
1 answer

No, this is currently not possible.

+3
source

Source: https://habr.com/ru/post/1208342/


All Articles