Make static website Bucket public

This samples make all objects in the static website Bucket readable to anyone on the public internet.

Explore further

For detailed documentation that includes this code sample, see the following:

Code sample

Terraform

To learn how to apply or remove a Terraform configuration, see Basic Terraform commands . For more information, see the Terraform provider reference documentation .

  # Make bucket public by granting allUsers storage.objectViewer access 
 resource 
  
 "google_storage_bucket_iam_member" 
  
 "public_rule" 
  
 { 
  
 bucket 
  
 = 
  
 google_storage_bucket.static_website.name 
  
 role 
  
 = 
  
 "roles/storage.objectViewer" 
  
 member 
  
 = 
  
 "allUsers" 
 } 
 

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser .

Create a Mobile Website
View Site in Mobile | Classic
Share by: