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.
source share