Skip to content

Instantly share code, notes, and snippets.

@viggin543
Created September 24, 2022 09:56
Show Gist options
  • Save viggin543/89523642619598fe083baca98e86bf0c to your computer and use it in GitHub Desktop.
Save viggin543/89523642619598fe083baca98e86bf0c to your computer and use it in GitHub Desktop.
resource "google_storage_bucket" "foo-bucket" {
name = "${var.project}-foo"
location = "US"
website {
main_page_suffix = "index.html"
not_found_page = "404.html"
}
uniform_bucket_level_access = true
storage_class = "MULTI_REGIONAL"
versioning {
enabled = false
}
cors {
origin = ["*"]
method = ["*"]
response_header = ["*"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment