We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10631b2 commit 4e36b8fCopy full SHA for 4e36b8f
modules/server/gcs.tf
@@ -17,8 +17,9 @@ resource "random_bytes" "abfs_bucket_prefix" {
17
}
18
19
resource "google_storage_bucket" "abfs" {
20
- project = var.project_id
21
- name = "${var.abfs_bucket_name}-${random_bytes.abfs_bucket_prefix.hex}"
22
- location = var.abfs_bucket_location
23
- public_access_prevention = "enforced"
+ project = var.project_id
+ name = "${var.abfs_bucket_name}-${random_bytes.abfs_bucket_prefix.hex}"
+ location = var.abfs_bucket_location
+ public_access_prevention = "enforced"
24
+ uniform_bucket_level_access = true
25
0 commit comments